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
Happened to see some wso2 documentation on patch and decided to try the two operations against the reference code and the pathless variation just fails miserably, skipping the patch itself. Is this a known issue, when tracing through the code it just ends up doing a return at some point as something was missing it expected to be set.
We have failed 3 validator tests due to not handling 'pathless' PATCH ops correctly in the reference code, for example:
{
"op": "replace",
"value": {
"active": true,
"displayName": "5CMEQTDIZTNHA",
"name.givenName": "5Madonna",
...
}
}
the code is in Core2EnterpriseUserExtensions::Apply(this Core2EnterpriseUser user, PatchRequest2 patch)
Happened to see some wso2 documentation on patch and decided to try the two operations against the reference code and the pathless variation just fails miserably, skipping the patch itself. Is this a known issue, when tracing through the code it just ends up doing a return at some point as something was missing it expected to be set.
pathless
{
"op": "add",
"value": {
"nickName": "shaggy"
}
}
pathed
{
"op": "add",
"path": "nickName",
"value": "Tomy"
}
The text was updated successfully, but these errors were encountered: