netty5/transport/src
Norman Maurer f81cd7d05b
Use correct object to synchronize on in DefaultChannelPipeline (#9171)
Motivation:

8e72071d76 did adjust how synchronization is done but missed to update one block and so used synchronized (this) while it should be synchronized (handlers) .

Modifications:

Use synchronized (handlers)

Result:

Correctly synchronize
2019-05-22 18:50:28 +02:00
..
main Use correct object to synchronize on in DefaultChannelPipeline (#9171) 2019-05-22 18:50:28 +02:00
test/java/io/netty Ensure channel handler close() is not skipped in !hasDisconnect case (#9098) 2019-04-28 10:47:25 +02:00