You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an issue with the way the mustUseAdvisory header is being handled in a provider.
Current Logic:
If object has an advisory ref id
if mustUseAdvisory = true
process request
else
raise error
else
if mustUseAdvisory = true
raise error
else
process request
Expected Behaviour:
if mustUseAdvisory = true
if there is a refId clash or the object does not have an advisory ref id
raise error
else
process request
else
process request assigning a new refid
The response to a create many where the mustUseAdvisory header is unset or set to false should contain a list of "Create Responses" containing advisory refId and it's new refid.
The text was updated successfully, but these errors were encountered:
There is an issue with the way the mustUseAdvisory header is being handled in a provider.
Current Logic:
Expected Behaviour:
The response to a create many where the mustUseAdvisory header is unset or set to false should contain a list of "Create Responses" containing advisory refId and it's new refid.
The text was updated successfully, but these errors were encountered: