Skip to content

Commit 58afe49

Browse files
author
Pavel Chertalev
committed
PROD VERSION Memory leak on disconnect is fixed
1 parent f1b60cd commit 58afe49

File tree

24 files changed

+24
-24
lines changed

24 files changed

+24
-24
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>info.bitrich.xchange-stream</groupId>
66
<artifactId>xchange-stream-parent</artifactId>
77
<packaging>pom</packaging>
8-
<version>4.3.17.1-dsx</version>
8+
<version>4.3.17.2-dsx</version>
99

1010
<modules>
1111
<module>xchange-stream-core</module>

service-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>xchange-stream-parent</artifactId>
55
<groupId>info.bitrich.xchange-stream</groupId>
6-
<version>4.3.17.1-dsx</version>
6+
<version>4.3.17.2-dsx</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

service-netty/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>xchange-stream-parent</artifactId>
55
<groupId>info.bitrich.xchange-stream</groupId>
6-
<version>4.3.17.1-dsx</version>
6+
<version>4.3.17.2-dsx</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

service-netty/src/main/java/info/bitrich/xchangestream/service/netty/NettyStreamingService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public Completable disconnect() {
251251
CloseWebSocketFrame closeFrame = new CloseWebSocketFrame();
252252
webSocketChannel.writeAndFlush(closeFrame).addListener(future -> {
253253
channels.clear();
254-
webSocketChannel.eventLoop().shutdownGracefully(2, 30, TimeUnit.SECONDS).addListener(f -> {
254+
eventLoopGroup.shutdownGracefully(2, 30, TimeUnit.SECONDS).addListener(f -> {
255255
LOG.info("Disconnected");
256256
completable.onComplete();
257257
});

service-pubnub/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>xchange-stream-parent</artifactId>
55
<groupId>info.bitrich.xchange-stream</groupId>
6-
<version>4.3.17.1-dsx</version>
6+
<version>4.3.17.2-dsx</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

service-pusher/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>xchange-stream-parent</artifactId>
55
<groupId>info.bitrich.xchange-stream</groupId>
6-
<version>4.3.17.1-dsx</version>
6+
<version>4.3.17.2-dsx</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

service-wamp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>xchange-stream-parent</artifactId>
55
<groupId>info.bitrich.xchange-stream</groupId>
6-
<version>4.3.17.1-dsx</version>
6+
<version>4.3.17.2-dsx</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

xchange-bankera/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>xchange-stream-parent</artifactId>
55
<groupId>info.bitrich.xchange-stream</groupId>
6-
<version>4.3.17.1-dsx</version>
6+
<version>4.3.17.2-dsx</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

xchange-binance/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>xchange-stream-parent</artifactId>
55
<groupId>info.bitrich.xchange-stream</groupId>
6-
<version>4.3.17.1-dsx</version>
6+
<version>4.3.17.2-dsx</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

xchange-bitfinex/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>xchange-stream-parent</artifactId>
55
<groupId>info.bitrich.xchange-stream</groupId>
6-
<version>4.3.17.1-dsx</version>
6+
<version>4.3.17.2-dsx</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

0 commit comments

Comments
 (0)