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
In the bySeniority sort function, we just check if a is a predecessor of b and if not, we assume that b is a predecessor of a. But they could have been added concurrently, in which case I'm not sure the current behavior is deterministic.
Test plan:
Two users are admitted concurrently.
They're both promoted to admins.
They try to remove each other concurrently.
Assert that everyone on the team resolves the conflict the same way
The text was updated successfully, but these errors were encountered:
In the
bySeniority
sort function, we just check ifa
is a predecessor ofb
and if not, we assume thatb
is a predecessor ofa
. But they could have been added concurrently, in which case I'm not sure the current behavior is deterministic.Test plan:
The text was updated successfully, but these errors were encountered: