We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Yo guys, was just looking into sources and found pretty suspicious usage of non-thread-safe collection.
Please consider using ConcurrentHashMap there because it may be accessed from different threads with subscribeOn and unsubscribeOn.
ConcurrentHashMap
subscribeOn
unsubscribeOn
Library looks nice! (extra points for Spock!)
The text was updated successfully, but these errors were encountered:
Yes, this may be true, we will take a look. However ConcurrentHashMap may not be enough. We should synchronize whole read/create operation.
Sorry, something went wrong.
Issue will be fixed by #6.
Merge pull request #6 from Polidea/bugfix/issue-5
dd5dab0
Fixed concurrency issues with submitting scan requests. #5
uKL
No branches or pull requests
Yo guys, was just looking into sources and found pretty suspicious usage of non-thread-safe collection.
Please consider using
ConcurrentHashMap
there because it may be accessed from different threads withsubscribeOn
andunsubscribeOn
.Library looks nice! (extra points for Spock!)
The text was updated successfully, but these errors were encountered: