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's a pending one (#112) which, once fixed, makes it safe to use but:
LDAP itself is asynchronous, which means you can send some requests (with ascending message id) and the responses are not guaranteed to return in that order.
The code receiving the response from the server ignores any id not sent by itself which means you could send request 1 from one go routine which takes a while to complete, then send the fast request 2 from a different go routine. The second one may be picked up by the first receiver and is discarded. See
In other words, can I use it safely from multiple goroutines?
Couldn't find this in the documentation anywhere.
The text was updated successfully, but these errors were encountered: