-
Notifications
You must be signed in to change notification settings - Fork 155
Upgrade Boltkit to 4.1. Adding BoltKit Test for NOOP message. #703
New issue
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a minor thing and a couple of questions, otherwise lgtm.
} | ||
catch ( InterruptedException ex ) | ||
{ | ||
Thread.currentThread().interrupt(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are you interrupting the current thread in an interrupted block?
} | ||
catch ( InterruptedException e ) | ||
{ | ||
Thread.currentThread().interrupt(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sames as above…
{ | ||
StubServer server = StubServer.start( "noop.script", 9001 ); | ||
URI uri = URI.create( "bolt://127.0.0.1:9001" ); | ||
int x; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
int x; |
Unused.
No description provided.