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
Like most CRUD APIs, this API doesn't have any concept of SQL-like "transactions" that can hold locks on the state while the application does its thing. Because of this there's always the risk of unintentionally clobbering a concurrent change when a write is conditional on a prior read.
This can be alleviated by adding an optional fromRecordId field to all "update" operations. When set, AuthX can ignore
Like most CRUD APIs, this API doesn't have any concept of SQL-like "transactions" that can hold locks on the state while the application does its thing. Because of this there's always the risk of unintentionally clobbering a concurrent change when a write is conditional on a prior read.
This can be alleviated by adding an optional
fromRecordId
field to all "update" operations. When set, AuthX can ignoreThis depends on #33 and #73.
The text was updated successfully, but these errors were encountered: