Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WFCORE-2717] try-catch block doesn't work if catch block doesn't contains anything #2361

Merged
merged 1 commit into from Apr 28, 2017

Conversation

iweiss
Copy link
Contributor

@iweiss iweiss commented Apr 25, 2017

Copy link
Contributor

@jfdenise jfdenise left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank-you for this fix and the unit test!

@@ -57,6 +57,7 @@ static TryCatchFinallyControlFlow get(CommandContext ctx) {
private int state;

TryCatchFinallyControlFlow(CommandContext ctx) {
tryList = new ArrayList<>();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could make tryList final and perhaps inline initialisation in declaration.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

doing so, any check for null in the class (I think there are some) should be removed.

@@ -97,6 +98,9 @@ boolean isInFinally() {
}

void moveToCatch() throws CommandLineException {
if(catchList == null) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could move the list initialisation in the switch (IN_TRY). Doing so, no need to check for null and you will only initialise the list when needed.

@@ -111,6 +115,9 @@ void moveToCatch() throws CommandLineException {
}

void moveToFinally() throws CommandLineException {
if(finallyList == null) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could move the list initialisation in the switch (IN_TRY and IN_CATCH). Doing so, no need to check for null and you will only initialise the list when needed.
Seems that you could get rid-off a call to break and merge the 2 cases.

@wildfly-ci
Copy link

Windows Build 3419 outcome was FAILURE using a merge of 323ab73
Summary: Execution timeout (new); tests failed: 1 (1 new), passed: 4208, ignored: 52 Build time: 01:00:16

Failed tests

org.jboss.as.test.integration.domain.cacheddc.CachedDcDomainTestCase.dcConfigChangePropagatedAfterRestart: java.lang.RuntimeException: {"host-failure-descriptions" => {"slave" => "Writes closed"}}
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.executeForResult(DomainLifecycleUtil.java:604)
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.executeForResult(DomainLifecycleUtil.java:595)
	at org.jboss.as.test.integration.domain.cacheddc.CachedDcDomainTestCase.dcConfigChangePropagatedAfterRestart(CachedDcDomainTestCase.java:198)
------- Stdout: -------
12:25:03,165 INFO  [org.jboss.modules] (main) JBoss Modules version 1.6.0.Beta6
12:25:03,519 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
[Host Controller] 12:25:04,126 INFO  [org.jboss.modules] (main) JBoss Modules version 1.6.0.Beta6
[Host Controller] 12:25:04,485 INFO  [org.jboss.msc] (main) JBoss MSC version 1.2.7.SP1
[Host Controller] 12:25:04,550 INFO  [org.jboss.as] (MSC service thread 1-7) WFLYSRV0049: WildFly Core 3.0.0.Beta17-SNAPSHOT "Kenny" starting
[Host Controller] 12:25:05,241 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/host=master/core-service=management/management-interface=native-interface' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
[Host Controller] 12:25:05,243 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/host=master/core-service=management/management-interface=http-interface' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
[Host Controller] 12:25:05,348 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1)
[Host Controller] 12:25:05,354 INFO  [org.xnio] (MSC service thread 1-7) XNIO version 3.5.0.Beta5
[Host Controller] 12:25:05,361 INFO  [org.xnio.nio] (MSC service thread 1-7) XNIO NIO Implementation Version 3.5.0.Beta5
[Host Controller] 12:25:05,418 INFO  [org.jboss.as.patching] (MSC service thread 1-4) WFLYPAT0050: WildFly cumulative patch ID is: base, one-off patches include: none
[Host Controller] 12:25:05,510 INFO  [org.jboss.remoting] (MSC service thread 1-7) JBoss Remoting version 5.0.0.Beta20
[Host Controller] 12:25:05,541 INFO  [org.jboss.as.remoting] (MSC service thread 1-7) WFLYRMT0001: Listening on [::1]:9999
[Host Controller] 12:25:05,554 WARN  [org.jboss.as.domain.http.api.undertow] (MSC service thread 1-3) WFLYDMHTTP0003: Unable to load console module for slot main, disabling console
[Host Controller] 12:25:05,784 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://[::1]:9990/management
[Host Controller] 12:25:05,784 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://[::1]:9990
[Host Controller] 12:25:05,785 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Core 3.0.0.Beta17-SNAPSHOT "Kenny" (Host Controller) started in 2143ms - Started 52 of 52 services (13 services are lazy, passive or on-demand)
INFO  [org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil] All servers started in 3416 ms
INFO  [org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil] HostController started in 3672 ms
12:25:06,812 INFO  [org.jboss.modules] (main) JBoss Modules version 1.6.0.Beta6
12:25:07,138 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
[Host Controller] 12:25:07,701 INFO  [org.jboss.modules] (main) JBoss Modules version 1.6.0.Beta6
[Host Controller] 12:25:08,036 INFO  [org.jboss.msc] (main) JBoss MSC version 1.2.7.SP1
[Host Controller] 12:25:08,099 INFO  [org.jboss.as] (MSC service thread 1-7) WFLYSRV0049: WildFly Core 3.0.0.Beta17-SNAPSHOT "Kenny" starting
[Host Controller] 12:25:08,746 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/host=slave/core-service=management/management-interface=native-interface' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
[Host Controller] 12:25:08,748 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/host=slave/core-service=management/management-interface=http-interface' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
[Host Controller] 12:25:08,749 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
[Host Controller] 12:25:08,854 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (19990) securePort (-1)
[Host Controller] 12:25:08,860 INFO  [org.xnio] (MSC service thread 1-3) XNIO version 3.5.0.Beta5
[Host Controller] 12:25:08,866 INFO  [org.xnio.nio] (MSC service thread 1-3) XNIO NIO Implementation Version 3.5.0.Beta5
[Host Controller] 12:25:08,946 INFO  [org.jboss.remoting] (MSC service thread 1-3) JBoss Remoting version 5.0.0.Beta20
[Host Controller] 12:25:08,956 INFO  [org.jboss.as.patching] (MSC service thread 1-7) WFLYPAT0050: WildFly cumulative patch ID is: base, one-off patches include: none
[Host Controller] 12:25:09,005 INFO  [org.jboss.as.remoting] (MSC service thread 1-4) WFLYRMT0001: Listening on [::1]:19999
[Host Controller] 12:25:09,181 INFO  [org.wildfly.security] (Controller Boot Thread) ELY00001: WildFly Elytron version 1.1.0.Beta38
[Host Controller] 12:25:09,900 INFO  [org.jboss.as.domain.controller] (Host Controller Service Threads - 3) WFLYHC0019: Registered remote slave host "slave", WildFly 3.0.0.Beta17-SNAPSHOT "Kenny"
[Host Controller] 12:25:09,902 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0148: Connected to master host controller at remote://[::1]:9999
[Host Controller] 12:25:09,940 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server other-two
12:25:09,949 INFO  [org.jboss.as.process.Server:other-two.status] (ProcessController-threads - 3) WFLYPC0018: Starting process 'Server:other-two'
[Server:other-two] 12:25:10,444 INFO  [org.jboss.modules] (main) JBoss Modules version 1.6.0.Beta6
[Server:other-two] 12:25:10,791 INFO  [org.jboss.msc] (main) JBoss MSC version 1.2.7.SP1
[Server:other-two] 12:25:10,995 INFO  [org.jboss.as] (MSC service thread 1-7) WFLYSRV0049: WildFly Core 3.0.0.Beta17-SNAPSHOT "Kenny" starting
[Server:other-two] 12:25:11,067 INFO  [org.xnio] (MSC service thread 1-1) XNIO version 3.5.0.Beta5
[Server:other-two] 12:25:11,074 INFO  [org.xnio.nio] (MSC service thread 1-1) XNIO NIO Implementation Version 3.5.0.Beta5
[Server:other-two] 12:25:11,165 INFO  [org.jboss.remoting] (MSC service thread 1-1) JBoss Remoting version 5.0.0.Beta20
[Server:other-two] 12:25:11,625 INFO  [org.wildfly.security] (ServerService Thread Pool -- 2) ELY00001: WildFly Elytron version 1.1.0.Beta38
[Host Controller] 12:25:11,836 INFO  [org.jboss.as.host.controller] (management task-7) WFLYHC0021: Server [Server:other-two] connected using connection [Channel ID 16872314 (inbound) of Remoting connection 00d963a7 to /0:0:0:0:0:0:0:1:62205 of endpoint "slave:MANAGEMENT" <1bc5e75>]


Copy link
Contributor

@jfdenise jfdenise left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Excellent! Thank-you.
JF

@wildfly-ci
Copy link

Windows Build 3420 outcome was FAILURE using a merge of 323ab73
Summary: Tests failed: 9 (9 new), passed: 4201, ignored: 52 Build time: 00:59:55

Failed tests

org.jboss.as.controller.test.RemoteProxyControllerProtocolTestCase.testOperationControlFailed: java.lang.RuntimeException: java.net.BindException: Address already in use: bind
	at sun.nio.ch.Net.bind0(Native Method)
	at sun.nio.ch.Net.bind(Net.java:433)
	at sun.nio.ch.Net.bind(Net.java:425)
	at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:223)
	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:74)
	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:67)
	at org.xnio.nio.NioXnioWorker.createTcpConnectionServer(NioXnioWorker.java:181)
	at org.xnio.XnioWorker.createStreamConnectionServer(XnioWorker.java:282)
	at org.jboss.remoting3.remote.RemoteConnectionProvider$ProviderInterface.createServer(RemoteConnectionProvider.java:368)
	at org.jboss.as.controller.support.ChannelServer.create(ChannelServer.java:92)
	at org.jboss.as.controller.support.RemoteChannelPairSetup.setupRemoting(RemoteChannelPairSetup.java:88)
	at org.jboss.as.controller.test.RemoteProxyControllerProtocolTestCase.setupProxyHandlers(RemoteProxyControllerProtocolTestCase.java:560)
	at org.jboss.as.controller.test.RemoteProxyControllerProtocolTestCase.testOperationControlFailed(RemoteProxyControllerProtocolTestCase.java:157)


org.jboss.as.controller.test.TransactionalProtocolClientTestCase.testCancelBeforePrepared: java.net.BindException: Address already in use: bind
	at sun.nio.ch.Net.bind0(Native Method)
	at sun.nio.ch.Net.bind(Net.java:433)
	at sun.nio.ch.Net.bind(Net.java:425)
	at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:223)
	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:74)
	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:67)
	at org.xnio.nio.NioXnioWorker.createTcpConnectionServer(NioXnioWorker.java:181)
	at org.xnio.XnioWorker.createStreamConnectionServer(XnioWorker.java:282)
	at org.jboss.remoting3.remote.RemoteConnectionProvider$ProviderInterface.createServer(RemoteConnectionProvider.java:368)
	at org.jboss.as.controller.support.ChannelServer.create(ChannelServer.java:92)
	at org.jboss.as.controller.test.TransactionalProtocolClientTestCase.startChannelServer(TransactionalProtocolClientTestCase.java:108)java.lang.NullPointerException: null
	at org.jboss.as.controller.test.TransactionalProtocolClientTestCase.stopChannels(TransactionalProtocolClientTestCase.java:142)


org.jboss.as.controller.test.TransactionalProtocolClientTestCase.testSimpleRequest: java.net.BindException: Address already in use: bind
	at sun.nio.ch.Net.bind0(Native Method)
	at sun.nio.ch.Net.bind(Net.java:433)
	at sun.nio.ch.Net.bind(Net.java:425)
	at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:223)
	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:74)
	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:67)
	at org.xnio.nio.NioXnioWorker.createTcpConnectionServer(NioXnioWorker.java:181)
	at org.xnio.XnioWorker.createStreamConnectionServer(XnioWorker.java:282)
	at org.jboss.remoting3.remote.RemoteConnectionProvider$ProviderInterface.createServer(RemoteConnectionProvider.java:368)
	at org.jboss.as.controller.support.ChannelServer.create(ChannelServer.java:92)
	at org.jboss.as.controller.test.TransactionalProtocolClientTestCase.startChannelServer(TransactionalProtocolClientTestCase.java:108)java.lang.NullPointerException: null
	at org.jboss.as.controller.test.TransactionalProtocolClientTestCase.stopChannels(TransactionalProtocolClientTestCase.java:142)


org.jboss.as.controller.test.TransactionalProtocolClientTestCase.testClosePrepared: java.net.BindException: Address already in use: bind
	at sun.nio.ch.Net.bind0(Native Method)
	at sun.nio.ch.Net.bind(Net.java:433)
	at sun.nio.ch.Net.bind(Net.java:425)
	at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:223)
	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:74)
	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:67)
	at org.xnio.nio.NioXnioWorker.createTcpConnectionServer(NioXnioWorker.java:181)
	at org.xnio.XnioWorker.createStreamConnectionServer(XnioWorker.java:282)
	at org.jboss.remoting3.remote.RemoteConnectionProvider$ProviderInterface.createServer(RemoteConnectionProvider.java:368)
	at org.jboss.as.controller.support.ChannelServer.create(ChannelServer.java:92)
	at org.jboss.as.controller.test.TransactionalProtocolClientTestCase.startChannelServer(TransactionalProtocolClientTestCase.java:108)java.lang.NullPointerException: null
	at org.jboss.as.controller.test.TransactionalProtocolClientTestCase.stopChannels(TransactionalProtocolClientTestCase.java:142)


org.jboss.as.controller.test.TransactionalProtocolClientTestCase.testConcurrentGroup: java.net.BindException: Address already in use: bind
	at sun.nio.ch.Net.bind0(Native Method)
	at sun.nio.ch.Net.bind(Net.java:433)
	at sun.nio.ch.Net.bind(Net.java:425)
	at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:223)
	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:74)
	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:67)
	at org.xnio.nio.NioXnioWorker.createTcpConnectionServer(NioXnioWorker.java:181)
	at org.xnio.XnioWorker.createStreamConnectionServer(XnioWorker.java:282)
	at org.jboss.remoting3.remote.RemoteConnectionProvider$ProviderInterface.createServer(RemoteConnectionProvider.java:368)
	at org.jboss.as.controller.support.ChannelServer.create(ChannelServer.java:92)
	at org.jboss.as.controller.test.TransactionalProtocolClientTestCase.startChannelServer(TransactionalProtocolClientTestCase.java:108)java.lang.NullPointerException: null
	at org.jboss.as.controller.test.TransactionalProtocolClientTestCase.stopChannels(TransactionalProtocolClientTestCase.java:142)


org.jboss.as.test.manualmode.deployment.InterdependentDeploymentTestCase.test: java.lang.AssertionError: interrelated-c.jar is not defined: undefined
	at org.jboss.as.test.deployment.trivial.ServiceActivatorDeploymentUtil.validateProperties(ServiceActivatorDeploymentUtil.java:136)
	at org.jboss.as.test.deployment.trivial.ServiceActivatorDeploymentUtil.validateProperties(ServiceActivatorDeploymentUtil.java:122)
	at org.jboss.as.test.manualmode.deployment.InterdependentDeploymentTestCase.validateDeployment(InterdependentDeploymentTestCase.java:247)
	at org.jboss.as.test.manualmode.deployment.InterdependentDeploymentTestCase.test(InterdependentDeploymentTestCase.java:194)
------- Stdout: -------
16:50:27,241 INFO  [org.wildfly.core.testrunner.Server] (main) Starting container with: C:\Java\jdk1.8.0_112\jre\bin\java -D[Standalone] -javaagent:c:\store\repository\org\jboss\byteman\byteman\3.0.6\byteman-3.0.6.jar=port:17091,address:127.0.0.1,boot:c:\store\repository\org\jboss\byteman\byteman\3.0.6\byteman-3.0.6.jar,sys:C:\BuildAgent\work\8d74ae55e497982e\testsuite\shared\target\wildfly-core-testsuite-shared-3.0.0.Beta17-SNAPSHOT.jar -Dorg.jboss.byteman.transform.all -Dorg.jboss.byteman.verbose=true -Dmaven.repo.local=c:\store\repository -Xmx512m -XX:MetaspaceSize=128m -Djboss.dist=C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode/target/wildfly-core -Djava.net.preferIPv4Stack=false -Djava.net.preferIPv6Addresses=true -server -Dts.timeout.factor=100 -Djbossas.ts.dir=C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode -Dorg.jboss.msc.directionalExecutor=true -ea -Dorg.jboss.boot.log.file=C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\log\server.log -Dlogging.configuration=file:C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\configuration\logging.properties -jar C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\jboss-modules.jar -mp C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\modules org.jboss.as.standalone -Djboss.home.dir=C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core -Djboss.server.base.dir=C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone -Djboss.server.log.dir=C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\log -Djboss.server.config.dir=C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\configuration -c=standalone.xml -bmanagement=::1 -Djboss.http.port=8080 -Djboss.bind.address=::1 
16:50:27,311 INFO  [org.jboss.remoting] (main) JBoss Remoting version 5.0.0.Beta20
16:50:27,331 INFO  [org.xnio] (main) XNIO version 3.5.0.Beta5
16:50:27,348 INFO  [org.xnio.nio] (main) XNIO NIO Implementation Version 3.5.0.Beta5
TransformListener() : accepting requests on 127.0.0.1:17091
16:50:27,547 INFO  [org.wildfly.security] (main) ELY00001: WildFly Elytron version 1.1.0.Beta38
16:50:27,990 INFO  [org.jboss.modules] (main) JBoss Modules version 1.6.0.Beta6
16:50:28,451 INFO  [org.jboss.msc] (main) JBoss MSC version 1.2.7.SP1
16:50:28,640 INFO  [org.jboss.as] (MSC service thread 1-7) WFLYSRV0049: WildFly Core 3.0.0.Beta17-SNAPSHOT "Kenny" starting
16:50:29,450 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/core-service=management/management-interface=http-interface' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
16:50:29,494 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http)
16:50:29,523 INFO  [org.xnio] (MSC service thread 1-7) XNIO version 3.5.0.Beta5
16:50:29,530 INFO  [org.xnio.nio] (MSC service thread 1-7) XNIO NIO Implementation Version 3.5.0.Beta5
16:50:29,640 INFO  [org.jboss.remoting] (MSC service thread 1-7) JBoss Remoting version 5.0.0.Beta20
16:50:29,670 INFO  [org.jboss.as.patching] (MSC service thread 1-5) WFLYPAT0050: WildFly cumulative patch ID is: base, one-off patches include: none
16:50:29,678 WARN  [org.jboss.as.domain.management.security] (MSC service thread 1-5) WFLYDM0111: Keystore C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\configuration\application.keystore not found, it will be auto generated on first use with a self signed certificate for host localhost
16:50:29,737 WARN  [org.jboss.as.domain.http.api.undertow] (MSC service thread 1-7) WFLYDMHTTP0003: Unable to load console module for slot main, disabling console
16:50:29,968 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
16:50:29,970 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://[::1]:9990/management
16:50:29,971 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://[::1]:9990
16:50:29,972 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Core 3.0.0.Beta17-SNAPSHOT "Kenny" started in 2531ms - Started 60 of 63 services (20 services are lazy, passive or on-demand)
16:50:30,420 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0001: Content added at location C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\data\content\70\d0285411cb51c78a9c068ca6c9972dae6853b4\content
16:50:30,434 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0001: Content added at location C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\data\content\7c\7186f1b94c26a128023e4089f9d1af4130325e\content
16:50:30,461 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0001: Content added at location C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\data\content\1e\2327d76284c124b4965c3d3f99bd01f1ed37ec\content
16:50:30,474 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0001: Content added at location C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\data\content\4c\097687d3ac006c2160679d2d9acb754ad1b10a\content
16:50:30,483 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0001: Content added at location C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\data\content\61\39d12f339e2d5341e0aad04704336fa58794ba\content
16:50:30,493 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0001: Content added at location C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\data\content\62\4fba4acfa8fbe4bc9dc0612edaf5bac433cf21\content
16:50:30,514 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-5) WFLYSRV0027: Starting deployment of "interrelated-f.jar" (runtime-name: "interrelated-f.jar")
16:50:30,514 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-2) WFLYSRV0027: Starting deployment of "interrelated-d.jar" (runtime-name: "interrelated-d.jar")
16:50:30,514 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0027: Starting deployment of "interrelated-c.jar" (runtime-name: "interrelated-c.jar")
16:50:30,515 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-1) WFLYSRV0027: Starting deployment of "interrelated-a.jar" (runtime-name: "interrelated-a.jar")
16:50:30,515 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-8) WFLYSRV0027: Starting deployment of "interrelated-e.jar" (runtime-name: "interrelated-e.jar")
16:50:30,516 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-7) WFLYSRV0027: Starting deployment of "interrelated-b.jar" (runtime-name: "interrelated-b.jar")
16:50:30,602 INFO  [stdout] (MSC service thread 1-4) Properties found

16:50:30,602 INFO  [stdout] (MSC service thread 1-4) Setting interrelated-e.jar to e

16:50:30,604 INFO  [stdout] (MSC service thread 1-8) Properties found

16:50:30,605 INFO  [stdout] (MSC service thread 1-8) Setting interrelated-a.jar to a

16:50:30,607 INFO  [stdout] (MSC service thread 1-2) Properties found

16:50:30,607 INFO  [stdout] (MSC service thread 1-2) Setting interrelated-b.jar to b



org.jboss.as.test.manualmode.management.cli.CLIEmbedServerTestCase.testFileDeploy: java.lang.AssertionError: Failed to execute line 'deploy C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\service-activated.jar'
org.jboss.as.cli.CommandFormatException: {"WFLYCTL0062: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-2" => {"WFLYCTL0080: Failed services" => {"jboss.deployment.unit.\"service-activated.jar\".INSTALL" => "WFLYSRV0153: Failed to process phase INSTALL of deployment \"service-activated.jar\"
    Caused by: org.jboss.as.server.deployment.DeploymentUnitProcessingException: org.jboss.msc.service.DuplicateServiceException: Service test.deployment.trivial is already registered
    Caused by: org.jboss.msc.service.DuplicateServiceException: Service test.deployment.trivial is already registered"}}}}
 at org.jboss.as.cli.handlers.DeployHandler.execute(DeployHandler.java:799)
 at org.jboss.as.cli.handlers.DeployHandler.doHandle(DeployHandler.java:437)
 at org.jboss.as.cli.handlers.CommandHandlerWithHelp.handle(CommandHandlerWithHelp.java:89)
 at org.jboss.as.cli.impl.CommandExecutor.execute(CommandExecutor.java:671)
 at org.jboss.as.cli.impl.CommandContextImpl.lambda$handle$0(CommandContextImpl.java:843)
 at org.jboss.as.cli.impl.CommandContextImpl.execute(CommandContextImpl.java:895)
 at org.jboss.as.cli.impl.CommandContextImpl.handle(CommandContextImpl.java:842)
 at org.jboss.as.test.integration.management.util.CLIWrapper.sendLine(CLIWrapper.java:180)
 at org.jboss.as.test.integration.management.util.CLIWrapper.sendLine(CLIWrapper.java:206)
 at org.jboss.as.test.manualmode.management.cli.CLIEmbedServerTestCase.testFileDeploy(CLIEmbedServerTestCase.java:309)

java.lang.AssertionError: Failed to execute line 'deploy C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\service-activated.jar'
org.jboss.as.cli.CommandFormatException: {"WFLYCTL0062: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-2" => {"WFLYCTL0080: Failed services" => {"jboss.deployment.unit.\"service-activated.jar\".INSTALL" => "WFLYSRV0153: Failed to process phase INSTALL of deployment \"service-activated.jar\"
    Caused by: org.jboss.as.server.deployment.DeploymentUnitProcessingException: org.jboss.msc.service.DuplicateServiceException: Service test.deployment.trivial is already registered
    Caused by: org.jboss.msc.service.DuplicateServiceException: Service test.deployment.trivial is already registered"}}}}
	at org.jboss.as.cli.handlers.DeployHandler.execute(DeployHandler.java:799)
	at org.jboss.as.cli.handlers.DeployHandler.doHandle(DeployHandler.java:437)
	at org.jboss.as.cli.handlers.CommandHandlerWithHelp.handle(CommandHandlerWithHelp.java:89)
	at org.jboss.as.cli.impl.CommandExecutor.execute(CommandExecutor.java:671)
	at org.jboss.as.cli.impl.CommandContextImpl.lambda$handle$0(CommandContextImpl.java:843)
	at org.jboss.as.cli.impl.CommandContextImpl.execute(CommandContextImpl.java:895)
	at org.jboss.as.cli.impl.CommandContextImpl.handle(CommandContextImpl.java:842)
	at org.jboss.as.test.integration.management.util.CLIWrapper.sendLine(CLIWrapper.java:180)
	at org.jboss.as.test.integration.management.util.CLIWrapper.sendLine(CLIWrapper.java:206)
	at org.jboss.as.test.manualmode.management.cli.CLIEmbedServerTestCase.testFileDeploy(CLIEmbedServerTestCase.java:309)

	at org.jboss.as.test.integration.management.util.CLIWrapper.sendLine(CLIWrapper.java:184)
	at org.jboss.as.test.integration.management.util.CLIWrapper.sendLine(CLIWrapper.java:206)
	at org.jboss.as.test.manualmode.management.cli.CLIEmbedServerTestCase.testFileDeploy(CLIEmbedServerTestCase.java:309)


org.jboss.as.test.manualmode.management.cli.CLIEmbedServerTestCase.testModelControllerDeploy:     "outcome" => "failed",
    "failure-description" => {"WFLYCTL0080: Failed services" => {"jboss.deployment.unit.\"service-activated.jar\".INSTALL" => "WFLYSRV0153: Failed to process phase INSTALL of deployment \"service-activated.jar\"
    Caused by: org.jboss.as.server.deployment.DeploymentUnitProcessingException: org.jboss.msc.service.DuplicateServiceException: Service test.deployment.trivial is already registered
    Caused by: org.jboss.msc.service.DuplicateServiceException: Service test.deployment.trivial is already registered"}},
    "rolled-back" => true
} expected:<[success]> but was:<[failed]>
	at org.jboss.as.test.manualmode.management.cli.CLIEmbedServerTestCase.testModelControllerDeploy(CLIEmbedServerTestCase.java:336)


org.jboss.as.test.manualmode.management.cli.DeploymentOverlayTestCase: java.lang.AssertionError: Failed to execute line 'deploy C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\test-deployment.jar --runtime-name=runtime-test-deployment.jar'
org.jboss.as.cli.CommandFormatException: {"WFLYCTL0062: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-2" => {"WFLYCTL0080: Failed services" => {"jboss.deployment.unit.\"runtime-test-deployment.jar\".INSTALL" => "WFLYSRV0153: Failed to process phase INSTALL of deployment \"runtime-test-deployment.jar\"
    Caused by: org.jboss.as.server.deployment.DeploymentUnitProcessingException: org.jboss.msc.service.DuplicateServiceException: Service test.deployment.trivial is already registered
    Caused by: org.jboss.msc.service.DuplicateServiceException: Service test.deployment.trivial is already registered"}}}}
 at org.jboss.as.cli.handlers.DeployHandler.execute(DeployHandler.java:799)
 at org.jboss.as.cli.handlers.DeployHandler.doHandle(DeployHandler.java:437)
 at org.jboss.as.cli.handlers.CommandHandlerWithHelp.handle(CommandHandlerWithHelp.java:89)
 at org.jboss.as.cli.impl.CommandExecutor.execute(CommandExecutor.java:671)
 at org.jboss.as.cli.impl.CommandContextImpl.lambda$handle$0(CommandContextImpl.java:843)
 at org.jboss.as.cli.impl.CommandContextImpl.execute(CommandContextImpl.java:895)
 at org.jboss.as.cli.impl.CommandContextImpl.handle(CommandContextImpl.java:842)
 at org.jboss.as.test.integration.management.util.CLIWrapper.sendLine(CLIWrapper.java:180)
 at org.jboss.as.test.manualmode.management.cli.DeploymentOverlayTestCase.deployContent(DeploymentOverlayTestCase.java:91)
 at org.jboss.as.test.manualmode.management.cli.DeploymentOverlayTestCase.setup(DeploymentOverlayTestCase.java:80)
 at org.wildfly.core.testrunner.WildflyTestRunner.run(WildflyTestRunner.java:109)

java.lang.AssertionError: Failed to execute line 'deploy C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\test-deployment.jar --runtime-name=runtime-test-deployment.jar'
org.jboss.as.cli.CommandFormatException: {"WFLYCTL0062: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-2" => {"WFLYCTL0080: Failed services" => {"jboss.deployment.unit.\"runtime-test-deployment.jar\".INSTALL" => "WFLYSRV0153: Failed to process phase INSTALL of deployment \"runtime-test-deployment.jar\"
    Caused by: org.jboss.as.server.deployment.DeploymentUnitProcessingException: org.jboss.msc.service.DuplicateServiceException: Service test.deployment.trivial is already registered
    Caused by: org.jboss.msc.service.DuplicateServiceException: Service test.deployment.trivial is already registered"}}}}
	at org.jboss.as.cli.handlers.DeployHandler.execute(DeployHandler.java:799)
	at org.jboss.as.cli.handlers.DeployHandler.doHandle(DeployHandler.java:437)
	at org.jboss.as.cli.handlers.CommandHandlerWithHelp.handle(CommandHandlerWithHelp.java:89)
	at org.jboss.as.cli.impl.CommandExecutor.execute(CommandExecutor.java:671)
	at org.jboss.as.cli.impl.CommandContextImpl.lambda$handle$0(CommandContextImpl.java:843)
	at org.jboss.as.cli.impl.CommandContextImpl.execute(CommandContextImpl.java:895)
	at org.jboss.as.cli.impl.CommandContextImpl.handle(CommandContextImpl.java:842)
	at org.jboss.as.test.integration.management.util.CLIWrapper.sendLine(CLIWrapper.java:180)
	at org.jboss.as.test.manualmode.management.cli.DeploymentOverlayTestCase.deployContent(DeploymentOverlayTestCase.java:91)
	at org.jboss.as.test.manualmode.management.cli.DeploymentOverlayTestCase.setup(DeploymentOverlayTestCase.java:80)
	at org.wildfly.core.testrunner.WildflyTestRunner.run(WildflyTestRunner.java:109)

	at org.jboss.as.test.integration.management.util.CLIWrapper.sendLine(CLIWrapper.java:184)
	at org.jboss.as.test.manualmode.management.cli.DeploymentOverlayTestCase.deployContent(DeploymentOverlayTestCase.java:91)
	at org.jboss.as.test.manualmode.management.cli.DeploymentOverlayTestCase.setup(DeploymentOverlayTestCase.java:80)
------- Stdout: -------
16:53:40,114 INFO  [org.wildfly.core.testrunner.Server] (main) Starting container with: C:\Java\jdk1.8.0_112\jre\bin\java -D[Standalone] -javaagent:c:\store\repository\org\jboss\byteman\byteman\3.0.6\byteman-3.0.6.jar=port:17091,address:127.0.0.1,boot:c:\store\repository\org\jboss\byteman\byteman\3.0.6\byteman-3.0.6.jar,sys:C:\BuildAgent\work\8d74ae55e497982e\testsuite\shared\target\wildfly-core-testsuite-shared-3.0.0.Beta17-SNAPSHOT.jar -Dorg.jboss.byteman.transform.all -Dorg.jboss.byteman.verbose=true -Dmaven.repo.local=c:\store\repository -Xmx512m -XX:MetaspaceSize=128m -Djboss.dist=C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode/target/wildfly-core -Djava.net.preferIPv4Stack=false -Djava.net.preferIPv6Addresses=true -server -Dts.timeout.factor=100 -Djbossas.ts.dir=C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode -ea -Dorg.jboss.boot.log.file=C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\log\server.log -Dlogging.configuration=file:C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\configuration\logging.properties -jar C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\jboss-modules.jar -mp C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\modules org.jboss.as.standalone -Djboss.home.dir=C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core -Djboss.server.base.dir=C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone -Djboss.server.log.dir=C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\log -Djboss.server.config.dir=C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\configuration -c=standalone.xml -bmanagement=::1 -Djboss.http.port=8080 -Djboss.bind.address=::1 
16:53:40,181 INFO  [org.jboss.remoting] (main) JBoss Remoting version 5.0.0.Beta20
16:53:40,200 INFO  [org.xnio] (main) XNIO version 3.5.0.Beta5
16:53:40,217 INFO  [org.xnio.nio] (main) XNIO NIO Implementation Version 3.5.0.Beta5
TransformListener() : accepting requests on 127.0.0.1:17091
16:53:40,370 INFO  [org.wildfly.security] (main) ELY00001: WildFly Elytron version 1.1.0.Beta38
16:53:40,692 INFO  [org.jboss.modules] (main) JBoss Modules version 1.6.0.Beta6
16:53:41,103 INFO  [org.jboss.msc] (main) JBoss MSC version 1.2.7.SP1
16:53:41,247 INFO  [org.jboss.as] (MSC service thread 1-7) WFLYSRV0049: WildFly Core 3.0.0.Beta17-SNAPSHOT "Kenny" starting
16:53:41,901 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/core-service=management/management-interface=http-interface' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
16:53:41,959 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http)
16:53:41,983 INFO  [org.xnio] (MSC service thread 1-6) XNIO version 3.5.0.Beta5
16:53:41,991 INFO  [org.xnio.nio] (MSC service thread 1-6) XNIO NIO Implementation Version 3.5.0.Beta5
16:53:42,105 INFO  [org.jboss.as.patching] (MSC service thread 1-4) WFLYPAT0050: WildFly cumulative patch ID is: base, one-off patches include: none
16:53:42,123 WARN  [org.jboss.as.domain.management.security] (MSC service thread 1-1) WFLYDM0111: Keystore C:\BuildAgent\work\8d74ae55e497982e\testsuite\manualmode\target\wildfly-core\standalone\configuration\application.keystore not found, it will be auto generated on first use with a self signed certificate for host localhost


@jfdenise
Copy link
Contributor

retest this please!

@wildfly-ci
Copy link

Core - Full Integration Build 4764 outcome was FAILURE using a merge of 323ab73
Summary: Exit code 1 (new) Build time: 00:01:22

@wildfly-ci
Copy link

Full integration - Windows Build 3191 outcome was FAILURE using a merge of 323ab73
Summary: Tests failed: 9 (9 new), passed: 1256, ignored: 48; compilation error: Compiler (new) Build time: 00:20:37

Failed tests

org.jboss.as.test.integration.ws.ejb.SimpleStatelessWebserviceEndpointTestCase.testRemoteAccess: java.lang.NoSuchMethodError: org.jboss.remoting3.Endpoint.getConnectedIdentity(Ljava/net/URI;Ljavax/net/ssl/SSLContext;Lorg/wildfly/security/auth/client/AuthenticationConfiguration;)Lorg/xnio/IoFuture;
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.lambda$getConnection$1(RemoteEJBReceiver.java:179)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.getConnection(RemoteEJBReceiver.java:179)
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.processInvocation(RemoteEJBReceiver.java:123)
	at org.jboss.ejb.client.EJBClientInvocationContext.sendRequest(EJBClientInvocationContext.java:314)
	at org.jboss.ejb.client.TransactionInterceptor.handleInvocation(TransactionInterceptor.java:68)
	at org.jboss.ejb.client.EJBClientInvocationContext.sendRequest(EJBClientInvocationContext.java:317)
	at org.jboss.ejb.client.EJBInvocationHandler.lambda$invoke$0(EJBInvocationHandler.java:176)
	at org.jboss.ejb.client.EJBClientContext.discoverAffinityNone(EJBClientContext.java:742)
	at org.jboss.ejb.client.EJBClientContext.performLocatedAction(EJBClientContext.java:701)
	at org.jboss.ejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:162)
	at org.jboss.ejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:112)
	at com.sun.proxy.$Proxy67.echo(Unknown Source)
	at org.jboss.as.test.integration.ws.ejb.SimpleStatelessWebserviceEndpointTestCase.testRemoteAccess(SimpleStatelessWebserviceEndpointTestCase.java:85)
------- Stdout: -------
19:11:47,964 INFO  [org.jboss.ejb.client] (main) EJBCLIENT000064: org.jboss.ejb.client.naming.ejb.ejbURLContextFactory is deprecated; new applications should use org.wildfly.naming.client.WildFlyInitialContextFactory instead
19:11:47,981 INFO  [org.wildfly.naming] (main) WildFly Naming version 1.0.0.Beta14
19:11:48,006 INFO  [org.jboss.ejb.client] (main) JBoss EJB Client version 4.0.0.Beta25
19:11:48,079 INFO  [org.jboss.ejb.client] (main) EJBCLIENT000072: Using legacy jboss-ejb-client.properties EJB client configuration


org.jboss.as.test.integration.ws.serviceref.ServiceRefTestCase.testCdiBeanRelay: java.lang.NoSuchMethodError: org.jboss.remoting3.Endpoint.getConnectedIdentity(Ljava/net/URI;Ljavax/net/ssl/SSLContext;Lorg/wildfly/security/auth/client/AuthenticationConfiguration;)Lorg/xnio/IoFuture;
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.lambda$getConnection$1(RemoteEJBReceiver.java:179)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.getConnection(RemoteEJBReceiver.java:179)
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.processInvocation(RemoteEJBReceiver.java:123)
	at org.jboss.ejb.client.EJBClientInvocationContext.sendRequest(EJBClientInvocationContext.java:314)
	at org.jboss.ejb.client.TransactionInterceptor.handleInvocation(TransactionInterceptor.java:68)
	at org.jboss.ejb.client.EJBClientInvocationContext.sendRequest(EJBClientInvocationContext.java:317)
	at org.jboss.ejb.client.EJBInvocationHandler.lambda$invoke$0(EJBInvocationHandler.java:176)
	at org.jboss.ejb.client.EJBClientContext.discoverAffinityNone(EJBClientContext.java:742)
	at org.jboss.ejb.client.EJBClientContext.performLocatedAction(EJBClientContext.java:701)
	at org.jboss.ejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:162)
	at org.jboss.ejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:112)
	at com.sun.proxy.$Proxy71.echoCDI(Unknown Source)
	at org.jboss.as.test.integration.ws.serviceref.ServiceRefTestCase.testCdiBeanRelay(ServiceRefTestCase.java:148)
------- Stdout: -------
19:11:52,754 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 66) WFLYUT0022: Unregistered web context: '/ws-serviceref-example' from server 'default-server'
19:11:52,754 INFO  [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-serviceref-example.jar".EJB3Bean
19:11:52,763 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 66) WFLYCLINF0003: Stopped client-mappings cache from ejb container
19:11:52,765 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0028: Stopped deployment ws-serviceref-example.jar (runtime-name: ws-serviceref-example.jar) in 12ms
19:11:52,789 INFO  [org.jboss.as.repository] (management-handler-thread - 4) WFLYDR0002: Content removed from location C:\BuildAgent\work\5768cf3a0bee5b47\full\testsuite\integration\ws\target\jbossas\standalone\data\content\2b\ac473856ec6a1c0cb95e1aaf5431ecbf7c34a9\content
19:11:52,790 INFO  [org.jboss.as.server] (management-handler-thread - 4) WFLYSRV0009: Undeployed "ws-serviceref-example.jar" (runtime-name: "ws-serviceref-example.jar")
19:11:52,801 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 66) WFLYUT0022: Unregistered web context: '/ws-serviceref-example-servlet-client' from server 'default-server'
19:11:52,817 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-1) WFLYSRV0028: Stopped deployment ws-serviceref-example-servlet-client.war (runtime-name: ws-serviceref-example-servlet-client.war) in 16ms
19:11:52,837 INFO  [org.jboss.as.repository] (management-handler-thread - 1) WFLYDR0002: Content removed from location C:\BuildAgent\work\5768cf3a0bee5b47\full\testsuite\integration\ws\target\jbossas\standalone\data\content\58\eff41ae27feb6ea07cfe30a409eda3c2430a7b\content
19:11:52,837 INFO  [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0009: Undeployed "ws-serviceref-example-servlet-client.war" (runtime-name: "ws-serviceref-example-servlet-client.war")
19:11:52,908 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0001: Content added at location C:\BuildAgent\work\5768cf3a0bee5b47\full\testsuite\integration\ws\target\jbossas\standalone\data\content\38\acdf31083acc0dd217a657d7089b62c716afa1\content
19:11:52,912 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0027: Starting deployment of "ws-serviceref-example.jar" (runtime-name: "ws-serviceref-example.jar")
19:11:52,956 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-8) WFLYSRV0018: Deployment "deployment.ws-serviceref-example.jar" is using a private module ("org.wildfly.security.manager") which may be changed or removed in future versions without notice.
19:11:52,963 INFO  [org.jboss.weld.deployer] (MSC service thread 1-2) WFLYWELD0003: Processing weld deployment ws-serviceref-example.jar
19:11:52,969 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-2) WFLYEJB0473: JNDI bindings for session bean named 'StatelessBean' in deployment unit 'deployment "ws-serviceref-example.jar"' are as follows:

	java:global/ws-serviceref-example/StatelessBean!org.jboss.as.test.integration.ws.serviceref.StatelessRemote
	java:app/ws-serviceref-example/StatelessBean!org.jboss.as.test.integration.ws.serviceref.StatelessRemote
	java:module/StatelessBean!org.jboss.as.test.integration.ws.serviceref.StatelessRemote
	java:jboss/exported/ws-serviceref-example/StatelessBean!org.jboss.as.test.integration.ws.serviceref.StatelessRemote
	java:global/ws-serviceref-example/StatelessBean
	java:app/ws-serviceref-example/StatelessBean
	java:module/StatelessBean

19:11:52,969 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-2) WFLYEJB0473: JNDI bindings for session bean named 'EJB3Bean' in deployment unit 'deployment "ws-serviceref-example.jar"' are as follows:

	java:global/ws-serviceref-example/EJB3Bean!org.jboss.as.test.integration.ws.serviceref.EndpointInterface
	java:app/ws-serviceref-example/EJB3Bean!org.jboss.as.test.integration.ws.serviceref.EndpointInterface
	java:module/EJB3Bean!org.jboss.as.test.integration.ws.serviceref.EndpointInterface
	java:jboss/exported/ws-serviceref-example/EJB3Bean!org.jboss.as.test.integration.ws.serviceref.EndpointInterface

19:11:52,969 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-2) WFLYEJB0473: JNDI bindings for session bean named 'StatelessBean2' in deployment unit 'deployment "ws-serviceref-example.jar"' are as follows:

	java:global/ws-serviceref-example/StatelessBean2!org.jboss.as.test.integration.ws.serviceref.StatelessRemote
	java:app/ws-serviceref-example/StatelessBean2!org.jboss.as.test.integration.ws.serviceref.StatelessRemote


org.jboss.as.test.integration.ws.serviceref.ServiceRefTestCase.testEJBRelay1: java.lang.NoSuchMethodError: org.jboss.remoting3.Endpoint.getConnectedIdentity(Ljava/net/URI;Ljavax/net/ssl/SSLContext;Lorg/wildfly/security/auth/client/AuthenticationConfiguration;)Lorg/xnio/IoFuture;
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.lambda$getConnection$1(RemoteEJBReceiver.java:179)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.getConnection(RemoteEJBReceiver.java:179)
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.processInvocation(RemoteEJBReceiver.java:123)
	at org.jboss.ejb.client.EJBClientInvocationContext.sendRequest(EJBClientInvocationContext.java:314)
	at org.jboss.ejb.client.TransactionInterceptor.handleInvocation(TransactionInterceptor.java:68)
	at org.jboss.ejb.client.EJBClientInvocationContext.sendRequest(EJBClientInvocationContext.java:317)
	at org.jboss.ejb.client.EJBInvocationHandler.lambda$invoke$0(EJBInvocationHandler.java:176)
	at org.jboss.ejb.client.EJBClientContext.discoverAffinityNone(EJBClientContext.java:742)
	at org.jboss.ejb.client.EJBClientContext.performLocatedAction(EJBClientContext.java:701)
	at org.jboss.ejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:162)
	at org.jboss.ejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:112)
	at com.sun.proxy.$Proxy71.echo1(Unknown Source)
	at org.jboss.as.test.integration.ws.serviceref.ServiceRefTestCase.testEJBRelay1(ServiceRefTestCase.java:108)


org.jboss.as.test.integration.ws.serviceref.ServiceRefTestCase.testEJBRelay2: java.lang.NoSuchMethodError: org.jboss.remoting3.Endpoint.getConnectedIdentity(Ljava/net/URI;Ljavax/net/ssl/SSLContext;Lorg/wildfly/security/auth/client/AuthenticationConfiguration;)Lorg/xnio/IoFuture;
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.lambda$getConnection$1(RemoteEJBReceiver.java:179)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.getConnection(RemoteEJBReceiver.java:179)
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.processInvocation(RemoteEJBReceiver.java:123)
	at org.jboss.ejb.client.EJBClientInvocationContext.sendRequest(EJBClientInvocationContext.java:314)
	at org.jboss.ejb.client.TransactionInterceptor.handleInvocation(TransactionInterceptor.java:68)
	at org.jboss.ejb.client.EJBClientInvocationContext.sendRequest(EJBClientInvocationContext.java:317)
	at org.jboss.ejb.client.EJBInvocationHandler.lambda$invoke$0(EJBInvocationHandler.java:176)
	at org.jboss.ejb.client.EJBClientContext.discoverAffinityNone(EJBClientContext.java:742)
	at org.jboss.ejb.client.EJBClientContext.performLocatedAction(EJBClientContext.java:701)
	at org.jboss.ejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:162)
	at org.jboss.ejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:112)
	at com.sun.proxy.$Proxy71.echo2(Unknown Source)
	at org.jboss.as.test.integration.ws.serviceref.ServiceRefTestCase.testEJBRelay2(ServiceRefTestCase.java:118)


org.jboss.as.test.integration.ws.serviceref.ServiceRefTestCase.testEJBRelay3: java.lang.NoSuchMethodError: org.jboss.remoting3.Endpoint.getConnectedIdentity(Ljava/net/URI;Ljavax/net/ssl/SSLContext;Lorg/wildfly/security/auth/client/AuthenticationConfiguration;)Lorg/xnio/IoFuture;
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.lambda$getConnection$1(RemoteEJBReceiver.java:179)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.getConnection(RemoteEJBReceiver.java:179)
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.processInvocation(RemoteEJBReceiver.java:123)
	at org.jboss.ejb.client.EJBClientInvocationContext.sendRequest(EJBClientInvocationContext.java:314)
	at org.jboss.ejb.client.TransactionInterceptor.handleInvocation(TransactionInterceptor.java:68)
	at org.jboss.ejb.client.EJBClientInvocationContext.sendRequest(EJBClientInvocationContext.java:317)
	at org.jboss.ejb.client.EJBInvocationHandler.lambda$invoke$0(EJBInvocationHandler.java:176)
	at org.jboss.ejb.client.EJBClientContext.discoverAffinityNone(EJBClientContext.java:742)
	at org.jboss.ejb.client.EJBClientContext.performLocatedAction(EJBClientContext.java:701)
	at org.jboss.ejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:162)
	at org.jboss.ejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:112)
	at com.sun.proxy.$Proxy71.echo3(Unknown Source)
	at org.jboss.as.test.integration.ws.serviceref.ServiceRefTestCase.testEJBRelay3(ServiceRefTestCase.java:128)


org.jboss.as.test.integration.ws.serviceref.ServiceRefTestCase.testEJBRelay4: java.lang.NoSuchMethodError: org.jboss.remoting3.Endpoint.getConnectedIdentity(Ljava/net/URI;Ljavax/net/ssl/SSLContext;Lorg/wildfly/security/auth/client/AuthenticationConfiguration;)Lorg/xnio/IoFuture;
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.lambda$getConnection$1(RemoteEJBReceiver.java:179)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.getConnection(RemoteEJBReceiver.java:179)
	at org.jboss.ejb.protocol.remote.RemoteEJBReceiver.processInvocation(RemoteEJBReceiver.java:123)
	at org.jboss.ejb.client.EJBClientInvocationContext.sendRequest(EJBClientInvocationContext.java:314)
	at org.jboss.ejb.client.TransactionInterceptor.handleInvocation(TransactionInterceptor.java:68)
	at org.jboss.ejb.client.EJBClientInvocationContext.sendRequest(EJBClientInvocationContext.java:317)
	at org.jboss.ejb.client.EJBInvocationHandler.lambda$invoke$0(EJBInvocationHandler.java:176)
	at org.jboss.ejb.client.EJBClientContext.discoverAffinityNone(EJBClientContext.java:742)
	at org.jboss.ejb.client.EJBClientContext.performLocatedAction(EJBClientContext.java:701)
	at org.jboss.ejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:162)
	at org.jboss.ejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:112)
	at com.sun.proxy.$Proxy71.echo4(Unknown Source)
	at org.jboss.as.test.integration.ws.serviceref.ServiceRefTestCase.testEJBRelay4(ServiceRefTestCase.java:138)


org.jboss.as.test.smoke.deployment.rar.tests.afterresourcecreation.AfterResourceCreationDeploymentTestCase.testConfiguration: java.lang.NoSuchMethodError: org.jboss.remoting3.Endpoint.getConnectedIdentity(Ljava/net/URI;Ljavax/net/ssl/SSLContext;Lorg/wildfly/security/auth/client/AuthenticationConfiguration;)Lorg/xnio/IoFuture;
	at org.wildfly.naming.client.remote.SingleRemoteNamingProvider.lambda$new$0(SingleRemoteNamingProvider.java:86)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.wildfly.naming.client.remote.SingleRemoteNamingProvider.getFuturePeerIdentity(SingleRemoteNamingProvider.java:121)
	at org.wildfly.naming.client.remote.SingleRemoteNamingProvider.getPeerIdentity(SingleRemoteNamingProvider.java:110)
	at org.wildfly.naming.client.remote.RemoteNamingProvider.getPeerIdentityForNaming(RemoteNamingProvider.java:69)
	at org.wildfly.naming.client.remote.RemoteContext.lambda$lookupNative$0(RemoteContext.java:109)
	at org.wildfly.naming.client.NamingProvider.performExceptionAction(NamingProvider.java:115)
	at org.wildfly.naming.client.remote.RemoteContext.lookupNative(RemoteContext.java:108)
	at org.wildfly.naming.client.AbstractFederatingContext.lookup(AbstractFederatingContext.java:78)
	at org.wildfly.naming.client.AbstractFederatingContext.lookup(AbstractFederatingContext.java:64)
	at org.wildfly.naming.client.WildFlyRootContext.lookup(WildFlyRootContext.java:149)
	at javax.naming.InitialContext.lookup(InitialContext.java:417)
	at org.jboss.as.test.smoke.deployment.rar.tests.afterresourcecreation.AfterResourceCreationDeploymentTestCase.testConfiguration(AfterResourceCreationDeploymentTestCase.java:128)
------- Stdout: -------
19:13:34,131 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-3) WFLYJCA0011: Unbound JCA AdminObject [java:jboss/Name4]
19:13:34,131 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-7) WFLYJCA0011: Unbound JCA AdminObject [java:jboss/Name3]
19:13:34,134 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-5) WFLYJCA0011: Unbound JCA ConnectionFactory [java:jboss/name1]
19:13:34,143 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-5) WFLYSRV0028: Stopped deployment archive_ij.rar (runtime-name: archive_ij.rar) in 14ms
19:13:34,159 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0002: Content removed from location C:\BuildAgent\work\5768cf3a0bee5b47\full\testsuite\integration\smoke\target\jbossas\standalone\data\content\20\2c9e7b8935f1e94c06d6434751c89ed6ca63e3\content
19:13:34,159 INFO  [org.jboss.as.server] (management-handler-thread - 2) WFLYSRV0009: Undeployed "archive_ij.rar" (runtime-name: "archive_ij.rar")
19:13:34,191 INFO  [org.jboss.as.repository] (management-handler-thread - 3) WFLYDR0001: Content added at location C:\BuildAgent\work\5768cf3a0bee5b47\full\testsuite\integration\smoke\target\jbossas\standalone\data\content\6b\532e4dc8b53f6c635aa118b7757001fdb0a096\content
19:13:34,194 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-5) WFLYSRV0027: Starting deployment of "basic-after.rar" (runtime-name: "basic-after.rar")
19:13:34,207 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-5) WFLYSRV0018: Deployment "deployment.basic-after.rar" is using a private module ("org.wildfly.security.manager") which may be changed or removed in future versions without notice.
19:13:34,230 INFO  [org.jboss.as.server] (management-handler-thread - 3) WFLYSRV0010: Deployed "basic-after.rar" (runtime-name : "basic-after.rar")
19:13:34,266 INFO  [org.wildfly.naming] (main) WFNAM00025: org.jboss.naming.remote.client.InitialContextFactory is deprecated; new applications should use org.wildfly.naming.client.WildFlyInitialContextFactory instead
19:13:34,269 INFO  [org.wildfly.naming] (main) WildFly Naming version 1.0.0.Beta14
19:13:34,459 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-5) WFLYJCA0007: Registered connection factory java:jboss/after/name1
19:13:34,459 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-5) WFLYJCA0006: Registered admin object at java:jboss/exported/after/Name3
19:13:34,466 INFO  [org.jboss.as.connector.deployers.RaXmlDeployer] (MSC service thread 1-5) IJ020002: Deployed: file:/C:/BuildAgent/work/5768cf3a0bee5b47/full/testsuite/integration/smoke/target/jbossas/standalone/tmp/vfs/temp/tempe495f0a77e411dc2/content-e1279114921e4ab5/contents/
19:13:34,469 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-5) WFLYJCA0002: Bound JCA AdminObject [java:jboss/exported/after/Name3]
19:13:34,469 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-5) WFLYJCA0002: Bound JCA ConnectionFactory [java:jboss/after/name1]


org.jboss.as.test.smoke.deployment.rar.tests.redeployment.ReDeploymentTestCase.testConfiguration: java.lang.NoSuchMethodError: org.jboss.remoting3.Endpoint.getConnectedIdentity(Ljava/net/URI;Ljavax/net/ssl/SSLContext;Lorg/wildfly/security/auth/client/AuthenticationConfiguration;)Lorg/xnio/IoFuture;
	at org.wildfly.naming.client.remote.SingleRemoteNamingProvider.lambda$new$0(SingleRemoteNamingProvider.java:86)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.wildfly.naming.client.remote.SingleRemoteNamingProvider.getFuturePeerIdentity(SingleRemoteNamingProvider.java:121)
	at org.wildfly.naming.client.remote.SingleRemoteNamingProvider.getPeerIdentity(SingleRemoteNamingProvider.java:110)
	at org.wildfly.naming.client.remote.RemoteNamingProvider.getPeerIdentityForNaming(RemoteNamingProvider.java:69)
	at org.wildfly.naming.client.remote.RemoteContext.lambda$lookupNative$0(RemoteContext.java:109)
	at org.wildfly.naming.client.NamingProvider.performExceptionAction(NamingProvider.java:115)
	at org.wildfly.naming.client.remote.RemoteContext.lookupNative(RemoteContext.java:108)
	at org.wildfly.naming.client.AbstractFederatingContext.lookup(AbstractFederatingContext.java:78)
	at org.wildfly.naming.client.AbstractFederatingContext.lookup(AbstractFederatingContext.java:64)
	at org.wildfly.naming.client.WildFlyRootContext.lookup(WildFlyRootContext.java:149)
	at javax.naming.InitialContext.lookup(InitialContext.java:417)
	at org.jboss.as.test.smoke.deployment.rar.tests.redeployment.ReDeploymentTestCase.testConfiguration(ReDeploymentTestCase.java:135)
------- Stdout: -------
19:13:38,044 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-8) WFLYJCA0011: Unbound JCA AdminObject [java:jboss/exported/Name4]
19:13:38,044 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-2) WFLYJCA0011: Unbound JCA ConnectionFactory [java:jboss/exported/name1]
19:13:38,044 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-6) WFLYJCA0011: Unbound JCA AdminObject [java:jboss/exported/Name3]
19:13:38,044 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-1) WFLYJCA0011: Unbound JCA ConnectionFactory [java:jboss/exported/name2]
19:13:38,051 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-2) WFLYSRV0028: Stopped deployment testcon_mult.rar (runtime-name: testcon_mult.rar) in 7ms
19:13:38,063 INFO  [org.jboss.as.repository] (management-handler-thread - 4) WFLYDR0002: Content removed from location C:\BuildAgent\work\5768cf3a0bee5b47\full\testsuite\integration\smoke\target\jbossas\standalone\data\content\3d\81fde0ef26786bfeefe6ec0301acb1b57bbed3\content
19:13:38,064 INFO  [org.jboss.as.server] (management-handler-thread - 4) WFLYSRV0009: Undeployed "testcon_mult.rar" (runtime-name: "testcon_mult.rar")
19:13:38,118 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0001: Content added at location C:\BuildAgent\work\5768cf3a0bee5b47\full\testsuite\integration\smoke\target\jbossas\standalone\data\content\25\e651713c7a29dc08b3dd927fb81f963b7f4af5\content
19:13:38,120 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0027: Starting deployment of "re-deployment.rar" (runtime-name: "re-deployment.rar")
19:13:38,141 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-2) WFLYSRV0018: Deployment "deployment.re-deployment.rar" is using a private module ("org.wildfly.security.manager") which may be changed or removed in future versions without notice.
19:13:38,175 INFO  [org.jboss.as.server] (management-handler-thread - 2) WFLYSRV0010: Deployed "re-deployment.rar" (runtime-name : "re-deployment.rar")
19:13:38,207 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-3) WFLYJCA0007: Registered connection factory java:jboss/redeployed/name1
19:13:38,208 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-3) WFLYJCA0006: Registered admin object at java:jboss/exported/redeployed/Name3
19:13:38,208 INFO  [org.jboss.as.connector.deployers.RaXmlDeployer] (MSC service thread 1-3) IJ020002: Deployed: file:/C:/BuildAgent/work/5768cf3a0bee5b47/full/testsuite/integration/smoke/target/jbossas/standalone/tmp/vfs/temp/tempe495f0a77e411dc2/content-9fb50f81a5da677f/contents/
19:13:38,209 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-7) WFLYJCA0002: Bound JCA ConnectionFactory [java:jboss/redeployed/name1]
19:13:38,209 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-7) WFLYJCA0002: Bound JCA AdminObject [java:jboss/exported/redeployed/Name3]
19:13:38,215 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-5) WFLYJCA0011: Unbound JCA AdminObject [java:jboss/exported/redeployed/Name3]
19:13:38,215 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-7) WFLYJCA0011: Unbound JCA ConnectionFactory [java:jboss/redeployed/name1]
19:13:38,223 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0028: Stopped deployment re-deployment.rar (runtime-name: re-deployment.rar) in 8ms
19:13:38,241 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0002: Content removed from location C:\BuildAgent\work\5768cf3a0bee5b47\full\testsuite\integration\smoke\target\jbossas\standalone\data\content\25\e651713c7a29dc08b3dd927fb81f963b7f4af5\content
19:13:38,241 INFO  [org.jboss.as.server] (management-handler-thread - 2) WFLYSRV0009: Undeployed "re-deployment.rar" (runtime-name: "re-deployment.rar")
19:13:38,257 INFO  [org.jboss.as.repository] (management-handler-thread - 3) WFLYDR0001: Content added at location C:\BuildAgent\work\5768cf3a0bee5b47\full\testsuite\integration\smoke\target\jbossas\standalone\data\content\25\e651713c7a29dc08b3dd927fb81f963b7f4af5\content
19:13:38,259 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0027: Starting deployment of "re-deployment.rar" (runtime-name: "re-deployment.rar")
19:13:38,270 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-4) WFLYSRV0018: Deployment "deployment.re-deployment.rar" is using a private module ("org.wildfly.security.manager") which may be changed or removed in future versions without notice.
19:13:38,280 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-4) WFLYJCA0007: Registered connection factory java:jboss/redeployed/name1
19:13:38,280 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-4) WFLYJCA0006: Registered admin object at java:jboss/exported/redeployed/Name3
19:13:38,281 INFO  [org.jboss.as.connector.deployers.RaXmlDeployer] (MSC service thread 1-4) IJ020002: Deployed: file:/C:/BuildAgent/work/5768cf3a0bee5b47/full/testsuite/integration/smoke/target/jbossas/standalone/tmp/vfs/temp/tempe495f0a77e411dc2/content-fb0b9d4cc8f7697/contents/
19:13:38,283 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-6) WFLYJCA0002: Bound JCA AdminObject [java:jboss/exported/redeployed/Name3]
19:13:38,283 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-6) WFLYJCA0002: Bound JCA ConnectionFactory [java:jboss/redeployed/name1]
19:13:38,295 INFO  [org.jboss.as.server] (management-handler-thread - 3) WFLYSRV0010: Deployed "re-deployment.rar" (runtime-name : "re-deployment.rar")


org.jboss.as.test.smoke.messaging.client.jms.JmsClientTestCase.testSendAndReceive: java.lang.NoSuchMethodError: org.jboss.remoting3.Endpoint.getConnectedIdentity(Ljava/net/URI;Ljavax/net/ssl/SSLContext;Lorg/wildfly/security/auth/client/AuthenticationConfiguration;)Lorg/xnio/IoFuture;
	at org.wildfly.naming.client.remote.SingleRemoteNamingProvider.lambda$new$0(SingleRemoteNamingProvider.java:86)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.wildfly.naming.client.remote.SingleRemoteNamingProvider.getFuturePeerIdentity(SingleRemoteNamingProvider.java:121)
	at org.wildfly.naming.client.remote.SingleRemoteNamingProvider.getPeerIdentity(SingleRemoteNamingProvider.java:110)
	at org.wildfly.naming.client.remote.RemoteNamingProvider.getPeerIdentityForNaming(RemoteNamingProvider.java:69)
	at org.wildfly.naming.client.remote.RemoteContext.lambda$lookupNative$0(RemoteContext.java:109)
	at org.wildfly.naming.client.NamingProvider.performExceptionAction(NamingProvider.java:115)
	at org.wildfly.naming.client.remote.RemoteContext.lookupNative(RemoteContext.java:108)
	at org.wildfly.naming.client.AbstractFederatingContext.lookup(AbstractFederatingContext.java:78)
	at org.wildfly.naming.client.AbstractFederatingContext.lookup(AbstractFederatingContext.java:64)
	at org.wildfly.naming.client.WildFlyRootContext.lookup(WildFlyRootContext.java:149)
	at javax.naming.InitialContext.lookup(InitialContext.java:417)
	at org.jboss.as.test.smoke.messaging.client.jms.JmsClientTestCase.doSendAndReceive(JmsClientTestCase.java:97)
	at org.jboss.as.test.smoke.messaging.client.jms.JmsClientTestCase.testSendAndReceive(JmsClientTestCase.java:91)
------- Stdout: -------
19:14:02,826 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-7) WFLYSRV0028: Stopped deployment messaging-example.jar (runtime-name: messaging-example.jar) in 2ms
19:14:02,844 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0002: Content removed from location C:\BuildAgent\work\5768cf3a0bee5b47\full\testsuite\integration\smoke\target\jbossas\standalone\data\content\8b\0f1e27945ecde617ba67be7bd7ebedcb9bf931\content
19:14:02,844 INFO  [org.jboss.as.server] (management-handler-thread - 2) WFLYSRV0009: Undeployed "messaging-example.jar" (runtime-name: "messaging-example.jar")
19:14:02,855 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 12) AMQ221003: Deploying queue jms.queue.createdTestQueue


@jfdenise
Copy link
Contributor

retest this please!

@bstansberry bstansberry merged commit 7663b4d into wildfly:master Apr 28, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
4 participants