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
{{ message }}
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
register_channel attempts to SET the expiry field but it's UpdateExpression is an ADD, which is documented to: "If the attribute is a number, and the value you are adding is also a number, then the value is mathematically added to the existing attribute".
this should be ADD chids :channel_id SET expiry :expiry instead. The rust side already has a fix included in: #1229
The text was updated successfully, but these errors were encountered:
register_channel attempts to SET the expiry field but it's UpdateExpression is an ADD, which is documented to: "If the attribute is a number, and the value you are adding is also a number, then the value is mathematically added to the existing attribute".
this should be
ADD chids :channel_id SET expiry :expiry
instead. The rust side already has a fix included in: #1229The text was updated successfully, but these errors were encountered: