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
RxClientImpl via ClientChannelFactoryImpl mutates the bootstrap object, updating the ChannelInitializer. This is wrong as the bootstrap is used across multiple connections and hence different initializers steps on each others steps.
This eventually ends up using the same ClientConnectionHandler across multiple connections and thus one subscriber of RxClient.submit() receives multiple onNext() calls.
In HTTP client this results in the same request being written multiple times on different connections.
The text was updated successfully, but these errors were encountered:
RxClientImpl via ClientChannelFactoryImpl mutates the bootstrap object, updating the ChannelInitializer. This is wrong as the bootstrap is used across multiple connections and hence different initializers steps on each others steps.
This eventually ends up using the same ClientConnectionHandler across multiple connections and thus one subscriber of RxClient.submit() receives multiple onNext() calls.
In HTTP client this results in the same request being written multiple times on different connections.
The text was updated successfully, but these errors were encountered: