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
{{ message }}
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
had an issue with terraform while trying to concurrently write on the direct client websocket connection. after some investigation with @ashraffouda, we found that the websocket connection used by the direct client should not be used by more than one go routine concurrently to perform read operations, and no more than one go routine to perform write operations, this is mentioned here
i tried to wrap the write method with locks, and the issue disappeared.
The text was updated successfully, but these errors were encountered:
had an issue with terraform while trying to concurrently write on the direct client websocket connection. after some investigation with @ashraffouda, we found that the websocket connection used by the direct client should not be used by more than one go routine concurrently to perform read operations, and no more than one go routine to perform write operations, this is mentioned here
i tried to wrap the write method with locks, and the issue disappeared.
The text was updated successfully, but these errors were encountered: