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
The official bitwarden CLI has a race condition on its cache file (session specific), and if you try to run it in parallel, the file will be corrupted. Does rbw have that problem?
I see that d4453cb added support for parallel execution on different sessions. But what about the same session?
The text was updated successfully, but these errors were encountered:
yes, parallel execution should work fine - the rbw binary will spawn a persistent agent process the first time it is run, which will be used by all further executions. that agent process mediates all access to the cache, etc., and uses mutexes internally to avoid requests from multiple clients from interfering with each other.
The official bitwarden CLI has a race condition on its cache file (session specific), and if you try to run it in parallel, the file will be corrupted. Does
rbw
have that problem?I see that d4453cb added support for parallel execution on different sessions. But what about the same session?
The text was updated successfully, but these errors were encountered: