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
Like the title says, in QuicChannelBootstrap::connect there is the following check
public Future<QuicChannel> connect(Promise<QuicChannel> promise) {
if (handler == null && streamHandler == null) {
throw new IllegalStateException("handler and streamHandler not set");
}
This check doesn't seem to make sense, why is it only an illegal state if both handler and streamHandler are null? What about if only one was null?
Also, why would it matter if either of them is null, as a handler can always be added to the pipeline after creation?
The text was updated successfully, but these errors were encountered:
Like the title says, in QuicChannelBootstrap::connect there is the following check
This check doesn't seem to make sense, why is it only an illegal state if both handler and streamHandler are null? What about if only one was null?
Also, why would it matter if either of them is null, as a handler can always be added to the pipeline after creation?
The text was updated successfully, but these errors were encountered: