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 a potential race condition because save and load are async. It's possible that the same publisher info record could be loaded in different places (the UI and the library for instance) and then the last save will win and overwrite the first one. A record version field could be used to check and update within a db transaction.
There is a potential race condition because save and load are async. It's possible that the same publisher info record could be loaded in different places (the UI and the library for instance) and then the last save will win and overwrite the first one. A record
versionfield could be used to check and update within a db transaction.