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
One could run into race condition issues when having one client used by multiple threads to run query and update calls. This is due to the use of instance variables in the make_post_request method:
Thanks for reporting. I'm not sure that the client is otherwise thread-safe, though; it's encapsulating a single HTTP connection, after all. Will evaluate whether it makes any sense to define it as thread safe when we get around to the next release.
One could run into race condition issues when having one client used by multiple threads to run
query
andupdate
calls. This is due to the use of instance variables in themake_post_request
method:https://github.com/ruby-rdf/sparql-client/blob/master/lib/sparql/client.rb#L505
The text was updated successfully, but these errors were encountered: