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
it happens because master is initializing applications, that requires user records to be inserted. Because DB operations are async, the logic of checking existence then insert fails because of concurrent attempts to insert the same record.
Solution: make app initialize one after another
Get around: start master multiple times until no error appears
The text was updated successfully, but these errors were encountered:
it happens because master is initializing applications, that requires user records to be inserted. Because DB operations are async, the logic of checking existence then insert fails because of concurrent attempts to insert the same record.
Solution: make app initialize one after another
Get around: start master multiple times until no error appears
The text was updated successfully, but these errors were encountered: