-
Notifications
You must be signed in to change notification settings - Fork 90
Bug: using an array for EventKeyJMESPath in idempotency module causes an error #1419
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
6 tasks
6 tasks
This is now released under 1.18.0 version! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
What were you trying to accomplish?
When using an array to select multiple fields in the payload to build the idempotency key, an exception is thrown:
No data found to create a hashed idempotency key
Expected Behavior
When using an array for
EventKeyJMESPath
(e.g."[field1, field2]"
) to select multiple elements in a payload, idempotency module should take the fields specified in the array.Current Behavior
An error is thrown:
No data found to create a hashed idempotency key
(code here)Possible Solution
In
BasePersistenceStore
, replace:with (note the
data.elements
instead of fields):Environment
The text was updated successfully, but these errors were encountered: