-
Notifications
You must be signed in to change notification settings - Fork 352
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
ensures connection is closed on keepalive timeout #1118
Conversation
Signed-off-by: Oleh Dokuka <[email protected]>
Signed-off-by: Oleh Dokuka <[email protected]>
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.
A couple of improvements suggested below for the test class, but otherwise looks good.
rsocket-transport-netty/src/test/java/io/rsocket/integration/KeepaliveTest.java
Show resolved
Hide resolved
// .subscribe(); | ||
|
||
// return client; | ||
} |
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.
The createClient methods maybe can also be combined into one with a lazy
input argument.
Signed-off-by: Oleh Dokuka <[email protected]>
Signed-off-by: Oleh Dokuka <[email protected]>
Signed-off-by: Oleh Dokuka <[email protected]>
Signed-off-by: Oleh Dokuka <[email protected]>
* ensures connection is close on keepalive timeout Signed-off-by: Oleh Dokuka <[email protected]> * fix format Signed-off-by: Oleh Dokuka <[email protected]> * improve KeepaliveTest Signed-off-by: Oleh Dokuka <[email protected]> * fix format and failing test Signed-off-by: Oleh Dokuka <[email protected]> * adds reference to the original GH issue Signed-off-by: Oleh Dokuka <[email protected]> * fixes google format Signed-off-by: Oleh Dokuka <[email protected]> --------- Signed-off-by: Oleh Dokuka <[email protected]>
closes #1099