Build: #573 was successful
Job: Netty was successful
Job result summary
- Completed
- Duration
- 3 minutes
- Revision
-
4491ccd66d7bed1b2d39c57d3793af29ae35d6d4
4491ccd66d7bed1b2d39c57d3793af29ae35d6d4 - Total tests
- 369
- First to pass since
- #570 (Code changes detected – )
Tests
- 369 tests in total
- 1 test was fixed
- 19 tests were quarantined / skipped
- 2 minutes taken in total.
Status | Test | Failing since | Duration |
---|---|---|---|
HttpClientTest
postUpload
|
Failing since build #570 (Code changes detected) | < 1 sec |
Error summary
The build generated some errors. See the full build log for more details.
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\resources\DefaultLoopResources.java:238: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
newEventLoopGroup.shutdownGracefully();
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\resources\NewConnectionProvider.java:203: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
.close();
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\resources\PooledConnectionProvider.java:425: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
channel.close();
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\resources\PooledConnectionProvider.java:444: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
.addListener(f -> {
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\resources\PooledConnectionProvider.java:492: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
f.removeListener(this);
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean 'f = f.removeListener(this);'?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\resources\PooledConnectionProvider.java:599: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
pool.release(c);
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\tcp\TcpServerBind.java:205: warning: [rawtypes] found raw type: ChannelOperations
ChannelOperations ops = ChannelOperations.get(connection.channel());
^
missing type arguments for generic class ChannelOperations<INBOUND,OUTBOUND>
where INBOUND,OUTBOUND are type-variables:
INBOUND extends NettyInbound declared in class ChannelOperations
OUTBOUND extends NettyOutbound declared in class ChannelOperations
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\tcp\TcpServerBind.java:152: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
f.removeListener(this);
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean 'f = f.removeListener(this);'?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\tcp\TcpServerBind.java:158: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
.close();
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean 'f = f.channel()'?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\tcp\TcpServerDoOnConnection.java:52: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
.close();
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\tcp\TcpServerHandle.java:69: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
.close();
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
58 warnings
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\test\java\reactor\netty\http\server\HttpSendFileTests.java:296: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
.close()))
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean '.doOnComplete(() -> resp.withConnection())'?
1 warning
ERROR: Test: Test sslExchangeAbsoluteGet(reactor.netty.http.client.HttpClientTest) produced resource leak: 00:44:21.666 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test testHttpSslH2CFails(reactor.netty.http.HttpTests) produced resource leak: 00:44:46.997 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test testHttpSslH2CFails(reactor.netty.http.HttpTests) produced resource leak: 00:44:46.997 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.392 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.392 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.392 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.408 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.408 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.408 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.408 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.408 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.408 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test testIssue585_2(reactor.netty.tcp.TcpClientTests) produced resource leak: 00:45:53.212 [reactor-tcp-nio-2] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test testIssue585_2(reactor.netty.tcp.TcpClientTests) produced resource leak: 00:45:53.212 [reactor-tcp-nio-2] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test testIssue585_2(reactor.netty.tcp.TcpClientTests) produced resource leak: 00:45:53.212 [reactor-tcp-nio-2] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test testIssue585_2(reactor.netty.tcp.TcpClientTests) produced resource leak: 00:45:53.212 [reactor-tcp-nio-2] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test testIssue585_2(reactor.netty.tcp.TcpClientTests) produced resource leak: 00:45:53.212 [reactor-tcp-nio-2] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
Did you mean to remove this line?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\resources\DefaultLoopResources.java:238: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
newEventLoopGroup.shutdownGracefully();
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\resources\NewConnectionProvider.java:203: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
.close();
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\resources\PooledConnectionProvider.java:425: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
channel.close();
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\resources\PooledConnectionProvider.java:444: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
.addListener(f -> {
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\resources\PooledConnectionProvider.java:492: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
f.removeListener(this);
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean 'f = f.removeListener(this);'?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\resources\PooledConnectionProvider.java:599: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
pool.release(c);
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\tcp\TcpServerBind.java:205: warning: [rawtypes] found raw type: ChannelOperations
ChannelOperations ops = ChannelOperations.get(connection.channel());
^
missing type arguments for generic class ChannelOperations<INBOUND,OUTBOUND>
where INBOUND,OUTBOUND are type-variables:
INBOUND extends NettyInbound declared in class ChannelOperations
OUTBOUND extends NettyOutbound declared in class ChannelOperations
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\tcp\TcpServerBind.java:152: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
f.removeListener(this);
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean 'f = f.removeListener(this);'?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\tcp\TcpServerBind.java:158: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
.close();
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean 'f = f.channel()'?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\tcp\TcpServerDoOnConnection.java:52: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
.close();
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\main\java\reactor\netty\tcp\TcpServerHandle.java:69: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
.close();
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean to remove this line?
58 warnings
C:\opt\bamboo-home\xml-data\build-dir\REACTOR-NETTYWIN-NETTY\src\test\java\reactor\netty\http\server\HttpSendFileTests.java:296: warning: [FutureReturnValueIgnored] Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future.
.close()))
^
(see http://errorprone.info/bugpattern/FutureReturnValueIgnored)
Did you mean '.doOnComplete(() -> resp.withConnection())'?
1 warning
ERROR: Test: Test sslExchangeAbsoluteGet(reactor.netty.http.client.HttpClientTest) produced resource leak: 00:44:21.666 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test testHttpSslH2CFails(reactor.netty.http.HttpTests) produced resource leak: 00:44:46.997 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test testHttpSslH2CFails(reactor.netty.http.HttpTests) produced resource leak: 00:44:46.997 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.392 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.392 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.392 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.408 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.408 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.408 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.408 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.408 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test sendZipFileCompressionPredicate_1(reactor.netty.http.server.HttpsSendFileTests) produced resource leak: 00:45:15.408 [Test worker] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test testIssue585_2(reactor.netty.tcp.TcpClientTests) produced resource leak: 00:45:53.212 [reactor-tcp-nio-2] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test testIssue585_2(reactor.netty.tcp.TcpClientTests) produced resource leak: 00:45:53.212 [reactor-tcp-nio-2] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test testIssue585_2(reactor.netty.tcp.TcpClientTests) produced resource leak: 00:45:53.212 [reactor-tcp-nio-2] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test testIssue585_2(reactor.netty.tcp.TcpClientTests) produced resource leak: 00:45:53.212 [reactor-tcp-nio-2] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.
ERROR: Test: Test testIssue585_2(reactor.netty.tcp.TcpClientTests) produced resource leak: 00:45:53.212 [reactor-tcp-nio-2] ERROR io.netty.util.ResourceLeakDetector - LEAK: ByteBuf.release() was not called before it's garbage-collected. See http://netty.io/wiki/reference-counted-objects.html for more information.