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
you cannot shutdown the stack cleanly. Parts of the flow isn't implemented and other parts isn't properly implemented.
ListeningPoint::down - all of them are returning null, when they should be returning CompletionStage. And there is in fact no code to actually shut down the listening point.
NettyNetworkInterface::down - looks correct but as it turns out, there is also a CountdownLatch passed in which the calling code assumes is going to be called. Should really wait for the futures to complete. Either or, currently it isn't working. Either get rid of the latch or actually call countdown on it.
NettyNetworkLayer::stop - this is where it all starts and also the one that assumes the latch will be used, which it isn't. So latch.await will hang indefinitely.
The text was updated successfully, but these errors were encountered:
you cannot shutdown the stack cleanly. Parts of the flow isn't implemented and other parts isn't properly implemented.
CountdownLatch
passed in which the calling code assumes is going to be called. Should really wait for the futures to complete. Either or, currently it isn't working. Either get rid of the latch or actually call countdown on it.latch.await
will hang indefinitely.The text was updated successfully, but these errors were encountered: