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
When using ThrottleRequestFilter, my custom TransferCompletionHandler is getting wrapped into an AsyncHandlerWrapper.
This later fails the type check in WriteListener's constructor so that onHeadersWritten() is never called: this.progressAsyncHandler = future.getAsyncHandler() instanceof ProgressAsyncHandler ? (ProgressAsyncHandler<?>) future.getAsyncHandler() : null;
The same might apply to the NettyRequestSender's writeRequest method for testing against the types TransferCompletionHandler and AsyncHandlerExtensions.
The text was updated successfully, but these errors were encountered:
When using ThrottleRequestFilter, my custom TransferCompletionHandler is getting wrapped into an AsyncHandlerWrapper.
This later fails the type check in WriteListener's constructor so that onHeadersWritten() is never called:
this.progressAsyncHandler = future.getAsyncHandler() instanceof ProgressAsyncHandler ? (ProgressAsyncHandler<?>) future.getAsyncHandler() : null;
The same might apply to the NettyRequestSender's writeRequest method for testing against the types TransferCompletionHandler and AsyncHandlerExtensions.
The text was updated successfully, but these errors were encountered: