From issues at jboss.org Tue Nov 1 05:21:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 1 Nov 2016 05:21:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2779) Add licence file to missing quickstarts In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2779: -------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > Add licence file to missing quickstarts > --------------------------------------- > > Key: JBTM-2779 > URL: https://issues.jboss.org/browse/JBTM-2779 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Demonstrator > Reporter: Tom Jenkinson > Assignee: Amos Feng > Fix For: 5.next > > > There are a lot of quickstarts that do not have the expected licence declarations at the top of their files. > You can find these: > find . -type f | grep -v git | grep -v jar | grep -v tools | xargs grep -H -c 'Lesser\|LICENSE-2' | grep 0$ | cut -d':' -f1 | wc > The correct licence should be added to them, you may find it easy to cat a licence file (in the correct .java, .xml, .sh, .bat format) to them. > The licence is LGPL. Those that were originally ASL etc should remain that way. -- This message was sent by Atlassian JIRA (v7.2.2#72004) From issues at jboss.org Tue Nov 1 08:16:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Tue, 1 Nov 2016 08:16:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2782) XTS crash recovery test Byteman rules use wrong variable types In-Reply-To: References: Message-ID: Gytis Trikleris created JBTM-2782: ------------------------------------- Summary: XTS crash recovery test Byteman rules use wrong variable types Key: JBTM-2782 URL: https://issues.jboss.org/browse/JBTM-2782 Project: JBoss Transaction Manager Issue Type: Bug Components: XTS Reporter: Gytis Trikleris Assignee: Gytis Trikleris Fix For: 5.next After updating Byteman as part of the compensations recovery work, XTS tests started to fail Byteman type check: {code} [INFO] --- byteman-rulecheck-maven-plugin:3.0.6:rulecheck (rulecheck) @ localjunit-crash-recovery-tests --- [INFO] Checking 11 byteman scripts in /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes [ERROR] Checking byteman script rules failed with 23 errors [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATCrashDuringCommit.btm line 322 against method replayPhase2() void org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATHeuristicRecoveryAfterDelayedCommit.btm line 326 against method replayPhase2() void org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid [ERROR] ERROR : Failed to type check rule "trace heuristic committed replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATHeuristicRecoveryAfterDelayedCommit.btm line 346 against method replayPhase2() void org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringCommit.btm line 543 against method replayPhase2() void org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringCommit.btm line 564 against method replayPhase2() void org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm line 614 against method replayPhase2() void org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm line 634 against method replayPhase2() void org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid [ERROR] ERROR : Failed to type check rule "trace coordinator completion complete" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 490 against method complete() com.arjuna.webservices11.wsba.State org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 491 [ERROR] ERROR : Failed to type check rule "trace participant completion completed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 507 against method completed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 508 [ERROR] ERROR : Failed to type check rule "trace coordinator completion completed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 524 against method completed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 525 [ERROR] ERROR : Failed to type check rule "trace participant completion exit" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 541 against method exit(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 542 [ERROR] ERROR : Failed to type check rule "trace coordinator completion exit" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 558 against method exit(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 559 [ERROR] ERROR : Failed to type check rule "trace participant completion close" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 615 against method close() com.arjuna.webservices11.wsba.State org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 616 [ERROR] ERROR : Failed to type check rule "trace coordinator completion close" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 633 against method close() com.arjuna.webservices11.wsba.State org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 634 [ERROR] ERROR : Failed to type check rule "trace participant completion closed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 650 against method closed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 651 [ERROR] ERROR : Failed to type check rule "trace coordinator completion closed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 667 against method closed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 668 [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 685 against method replayPhase2() void org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommit.btm line 911 against method replayPhase2() void org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommit.btm line 931 against method replayPhase2() void org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommitAfterSubordinateExit.btm line 944 against method replayPhase2() void org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommitAfterSubordinateExit.btm line 963 against method replayPhase2() void org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringComplete.btm line 1017 against method replayPhase2() void org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringComplete.btm line 1037 against method replayPhase2() void org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid {code} -- This message was sent by Atlassian JIRA (v7.2.2#72004) From issues at jboss.org Tue Nov 1 08:16:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Tue, 1 Nov 2016 08:16:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2782) XTS crash recovery test Byteman rules use wrong variable types In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2782?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Work on JBTM-2782 started by Gytis Trikleris. --------------------------------------------- > XTS crash recovery test Byteman rules use wrong variable types > -------------------------------------------------------------- > > Key: JBTM-2782 > URL: https://issues.jboss.org/browse/JBTM-2782 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: XTS > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Fix For: 5.next > > > After updating Byteman as part of the compensations recovery work, XTS tests started to fail Byteman type check: > {code} > [INFO] --- byteman-rulecheck-maven-plugin:3.0.6:rulecheck (rulecheck) @ localjunit-crash-recovery-tests --- > [INFO] Checking 11 byteman scripts in /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes > [ERROR] Checking byteman script rules failed with 23 errors > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATCrashDuringCommit.btm line 322 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATHeuristicRecoveryAfterDelayedCommit.btm line 326 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace heuristic committed replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATHeuristicRecoveryAfterDelayedCommit.btm line 346 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringCommit.btm line 543 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringCommit.btm line 564 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm line 614 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm line 634 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace coordinator completion complete" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 490 against method complete() com.arjuna.webservices11.wsba.State > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 491 > [ERROR] ERROR : Failed to type check rule "trace participant completion completed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 507 against method completed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 508 > [ERROR] ERROR : Failed to type check rule "trace coordinator completion completed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 524 against method completed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 525 > [ERROR] ERROR : Failed to type check rule "trace participant completion exit" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 541 against method exit(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 542 > [ERROR] ERROR : Failed to type check rule "trace coordinator completion exit" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 558 against method exit(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 559 > [ERROR] ERROR : Failed to type check rule "trace participant completion close" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 615 against method close() com.arjuna.webservices11.wsba.State > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 616 > [ERROR] ERROR : Failed to type check rule "trace coordinator completion close" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 633 against method close() com.arjuna.webservices11.wsba.State > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 634 > [ERROR] ERROR : Failed to type check rule "trace participant completion closed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 650 against method closed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 651 > [ERROR] ERROR : Failed to type check rule "trace coordinator completion closed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 667 against method closed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 668 > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 685 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommit.btm line 911 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommit.btm line 931 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommitAfterSubordinateExit.btm line 944 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommitAfterSubordinateExit.btm line 963 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringComplete.btm line 1017 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringComplete.btm line 1037 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > {code} -- This message was sent by Atlassian JIRA (v7.2.2#72004) From issues at jboss.org Tue Nov 1 08:19:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Tue, 1 Nov 2016 08:19:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2782) XTS crash recovery test Byteman rules use wrong variable types In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2782?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gytis Trikleris updated JBTM-2782: ---------------------------------- Status: Pull Request Sent (was: Coding In Progress) Git Pull Request: https://github.com/jbosstm/narayana/pull/1077 > XTS crash recovery test Byteman rules use wrong variable types > -------------------------------------------------------------- > > Key: JBTM-2782 > URL: https://issues.jboss.org/browse/JBTM-2782 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: XTS > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Fix For: 5.next > > > After updating Byteman as part of the compensations recovery work, XTS tests started to fail Byteman type check: > {code} > [INFO] --- byteman-rulecheck-maven-plugin:3.0.6:rulecheck (rulecheck) @ localjunit-crash-recovery-tests --- > [INFO] Checking 11 byteman scripts in /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes > [ERROR] Checking byteman script rules failed with 23 errors > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATCrashDuringCommit.btm line 322 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATHeuristicRecoveryAfterDelayedCommit.btm line 326 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace heuristic committed replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATHeuristicRecoveryAfterDelayedCommit.btm line 346 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringCommit.btm line 543 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringCommit.btm line 564 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm line 614 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm line 634 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace coordinator completion complete" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 490 against method complete() com.arjuna.webservices11.wsba.State > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 491 > [ERROR] ERROR : Failed to type check rule "trace participant completion completed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 507 against method completed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 508 > [ERROR] ERROR : Failed to type check rule "trace coordinator completion completed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 524 against method completed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 525 > [ERROR] ERROR : Failed to type check rule "trace participant completion exit" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 541 against method exit(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 542 > [ERROR] ERROR : Failed to type check rule "trace coordinator completion exit" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 558 against method exit(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 559 > [ERROR] ERROR : Failed to type check rule "trace participant completion close" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 615 against method close() com.arjuna.webservices11.wsba.State > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 616 > [ERROR] ERROR : Failed to type check rule "trace coordinator completion close" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 633 against method close() com.arjuna.webservices11.wsba.State > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 634 > [ERROR] ERROR : Failed to type check rule "trace participant completion closed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 650 against method closed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 651 > [ERROR] ERROR : Failed to type check rule "trace coordinator completion closed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 667 against method closed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 668 > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 685 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommit.btm line 911 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommit.btm line 931 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommitAfterSubordinateExit.btm line 944 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommitAfterSubordinateExit.btm line 963 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringComplete.btm line 1017 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringComplete.btm line 1037 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > {code} -- This message was sent by Atlassian JIRA (v7.2.2#72004) From issues at jboss.org Tue Nov 1 10:34:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Tue, 1 Nov 2016 10:34:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2783) Add suspend and resume methods to RecoveryManagerService In-Reply-To: References: Message-ID: Gytis Trikleris created JBTM-2783: ------------------------------------- Summary: Add suspend and resume methods to RecoveryManagerService Key: JBTM-2783 URL: https://issues.jboss.org/browse/JBTM-2783 Project: JBoss Transaction Manager Issue Type: Feature Request Components: Application Server Integration Reporter: Gytis Trikleris Assignee: Gytis Trikleris Fix For: 5.next Recovery manager service in WildFly needs to be able to suspend and resume recovery manager service. -- This message was sent by Atlassian JIRA (v7.2.2#72004) From issues at jboss.org Tue Nov 1 10:40:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Tue, 1 Nov 2016 10:40:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2783) Add suspend and resume methods to RecoveryManagerService In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2783?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Issue was automatically transitioned when Gytis Trikleris created pull request #1086 in GitHub ---------------------------------------------------------------------------------------------- Status: Pull Request Sent (was: Open) > Add suspend and resume methods to RecoveryManagerService > -------------------------------------------------------- > > Key: JBTM-2783 > URL: https://issues.jboss.org/browse/JBTM-2783 > Project: JBoss Transaction Manager > Issue Type: Feature Request > Components: Application Server Integration > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Fix For: 5.next > > > Recovery manager service in WildFly needs to be able to suspend and resume recovery manager service. -- This message was sent by Atlassian JIRA (v7.2.2#72004) From issues at jboss.org Tue Nov 1 11:15:01 2016 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Tue, 1 Nov 2016 11:15:01 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2749) Add an SPI method to lookup imported transactions by Xid In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2749?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13314956#comment-13314956 ] RH Bugzilla Integration commented on JBTM-2749: ----------------------------------------------- Aurel Pintea changed the Status of [bug 1383572|https://bugzilla.redhat.com/show_bug.cgi?id=1383572] from MODIFIED to ON_QA > Add an SPI method to lookup imported transactions by Xid > -------------------------------------------------------- > > Key: JBTM-2749 > URL: https://issues.jboss.org/browse/JBTM-2749 > Project: JBoss Transaction Manager > Issue Type: Enhancement > Components: JCA, SPI > Affects Versions: 5.3.4.Final > Reporter: Michael Musgrove > Assignee: Michael Musgrove > Priority: Critical > Fix For: 4.17.37, 5.2.19.Final, 5.3.5.Final > > > When EJB remoting sees an incoming transaction it needs to determine whether it is one that the TM already knows about and should just resume it or if it needs to start a new subordinate transaction for it on this node. -- This message was sent by Atlassian JIRA (v7.2.2#72004) From issues at jboss.org Tue Nov 1 11:16:01 2016 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Tue, 1 Nov 2016 11:16:01 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2774) Leak when imported subordinate transactions are rolled back by reaper before remote reaper In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2774?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13314970#comment-13314970 ] RH Bugzilla Integration commented on JBTM-2774: ----------------------------------------------- Aurel Pintea changed the Status of [bug 1387316|https://bugzilla.redhat.com/show_bug.cgi?id=1387316] from MODIFIED to ON_QA > Leak when imported subordinate transactions are rolled back by reaper before remote reaper > ------------------------------------------------------------------------------------------ > > Key: JBTM-2774 > URL: https://issues.jboss.org/browse/JBTM-2774 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: Application Server Integration > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Priority: Critical > Fix For: 4.17.38, 5.2.20.Final, 5.next > > > When using the EJB remoting transport that layers over the top of JCA it is possible for a race condition between the two reapers. > Normally you have server 1 and server 2. Each of these insert the TwoPhaseCoordinator in their TransactionReaper. If the TransactionReaper in server 2 fires first then it will rollback the TPC. > When server 1 Reaper EJB remoting transport fires it will try to rollback at server 2 also and it is this that should be safe to remove the transactionImple reference. > At the time of reporting the reference is not removed though and so the reference to the TransactionImple is not removed. -- This message was sent by Atlassian JIRA (v7.2.2#72004) From issues at jboss.org Tue Nov 1 15:34:00 2016 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Tue, 1 Nov 2016 15:34:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2449) SPI class ServerVMClientUserTransaction should be Serializable and Referenceable In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2449?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13315120#comment-13315120 ] RH Bugzilla Integration commented on JBTM-2449: ----------------------------------------------- Aurel Pintea changed the Status of [bug 1235886|https://bugzilla.redhat.com/show_bug.cgi?id=1235886] from MODIFIED to ON_QA > SPI class ServerVMClientUserTransaction should be Serializable and Referenceable > -------------------------------------------------------------------------------- > > Key: JBTM-2449 > URL: https://issues.jboss.org/browse/JBTM-2449 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: SPI > Affects Versions: 5.1.1 > Reporter: Michael Musgrove > Assignee: Michael Musgrove > Fix For: 5.3.5.Final > > > This SPI class implements UserTransaction but does not follow the JNDI conventions. The JTA specification (section 3.1) says: > bq. The implementation of the UserTransaction object must be both javax.naming.Referenceable and java.io.Serializable , so that the object can be stored in all JNDI naming contexts. -- This message was sent by Atlassian JIRA (v7.2.2#72004) From issues at jboss.org Wed Nov 2 05:34:00 2016 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Wed, 2 Nov 2016 05:34:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2500) Update version of jboss-logging to 3.1.4.GA In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2500?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13315806#comment-13315806 ] RH Bugzilla Integration commented on JBTM-2500: ----------------------------------------------- Aurel Pintea changed the Status of [bug 1238927|https://bugzilla.redhat.com/show_bug.cgi?id=1238927] from MODIFIED to ON_QA > Update version of jboss-logging to 3.1.4.GA > ------------------------------------------- > > Key: JBTM-2500 > URL: https://issues.jboss.org/browse/JBTM-2500 > Project: JBoss Transaction Manager > Issue Type: Component Upgrade > Components: SPI > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > > Upgrade the version of jboss-logging to latest version. -- This message was sent by Atlassian JIRA (v7.2.2#72004) From issues at jboss.org Wed Nov 2 06:01:01 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Wed, 2 Nov 2016 06:01:01 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2151) Create a Quickstart showing MongoDB and Compensations API In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2151?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gytis Trikleris resolved JBTM-2151. ----------------------------------- Resolution: Done > Create a Quickstart showing MongoDB and Compensations API > --------------------------------------------------------- > > Key: JBTM-2151 > URL: https://issues.jboss.org/browse/JBTM-2151 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Compensations, Demonstrator > Reporter: Paul Robinson > Assignee: Gytis Trikleris > Fix For: 5.later > > -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 2 06:03:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Wed, 2 Nov 2016 06:03:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2784) Add CI tests for MongoDB compensations quickstart In-Reply-To: References: Message-ID: Gytis Trikleris created JBTM-2784: ------------------------------------- Summary: Add CI tests for MongoDB compensations quickstart Key: JBTM-2784 URL: https://issues.jboss.org/browse/JBTM-2784 Project: JBoss Transaction Manager Issue Type: Task Components: Compensations, Demonstrator Reporter: Gytis Trikleris Priority: Minor MongoDB compensations quickstart is not being tested because MongoDB is not available on the CI. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 2 06:04:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Wed, 2 Nov 2016 06:04:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2746) facing performane issue when setup narayana JTA and txbridge out of JBoss In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2746?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gytis Trikleris closed JBTM-2746. --------------------------------- Resolution: Rejected > facing performane issue when setup narayana JTA and txbridge out of JBoss > ------------------------------------------------------------------------- > > Key: JBTM-2746 > URL: https://issues.jboss.org/browse/JBTM-2746 > Project: JBoss Transaction Manager > Issue Type: Enhancement > Components: JTA, TxBridge, XTS > Affects Versions: 5.3.4.Final > Reporter: Zefa Guan > Assignee: Gytis Trikleris > Attachments: ServiceA_logs.zip, ServiceB_logs.zip, ServiceC_logs.zip > > > when setup txbridge under Tomcat8 out of JBoss, I am facing performance issue as below scenario; > 1) running 3 tomcat instances > 2) A call B via WS > 3) B call C via WS > 4) when 100 - 200 GET query from " http://localhost:8081/user?action=add " via Service A, all 3 tomcat got stuck for a while then raise exception with attached logs > sth similar with quickstart example but no EJB and out of JBoss from https://github.com/jbosstm/quickstart/tree/master/XTS > ================================================== > WS-AT to JTA (Multi Hop) > This example demonstrates a JTA client that invokes a remote EJB over Web services. The JTA transaction is distributed to the remote EJB using WS-AtomicTransaction. The service also acts as a client to a second service. Again using WS-AT to distribute the transaction over Web services. > ================================================== > {code} > servlet client - localhost:8081/user?action=add > | > -------------------------------------------------------------- > ServiceA Tomcat > Narayana JTA > Webservie - localhost:8082/user?action=add > -------------------------------------------------------------- > | > txbridge > | > -------------------------------------------------------------- > ServiceB Tomcat > Narayana JTA > Webservie - localhost:8083/user?action=add > -------------------------------------------------------------- > | > txbridge > | > -------------------------------------------------------------- > ServiceB Tomcat > Narayana JTA > -------------------------------------------------------------- > {code} > --------------------------------------------- > this may caused by race condition/socket timeout/exceed limits, will need to reproduce and research more; > at the beginning I thought it was caused by DB resource locking failed but after I commented out all DB access, the problem still there > put all my code to https://github.com/JonkeyGuan/txbridgeInTomcat8 for reproducing and reference -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 2 06:05:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Wed, 2 Nov 2016 06:05:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2688) Message was not delivered to the queue in Spring Boot QS In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2688?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gytis Trikleris closed JBTM-2688. --------------------------------- Fix Version/s: (was: 5.next) Resolution: Out of Date > Message was not delivered to the queue in Spring Boot QS > -------------------------------------------------------- > > Key: JBTM-2688 > URL: https://issues.jboss.org/browse/JBTM-2688 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: Demonstrator > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Priority: Minor > > {code} > ------------------------------------------------------------------------------- > Test set: org.jboss.narayana.quickstart.spring.QuickstartApplicationTests > ------------------------------------------------------------------------------- > Tests run: 2, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 11.443 sec <<< FAILURE! > testCommit(org.jboss.narayana.quickstart.spring.QuickstartApplicationTests) Time elapsed: 2.43 sec <<< FAILURE! > java.lang.AssertionError: > Expected: a string containing "Message received: Created entry 'Test Value'" > but: was " > . ____ _ __ _ _ > /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ > ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ > \\/ ___)| |_)| | | | | || (_| | ) ) ) ) > ' |____| .__|_| |_|_| |_\__, | / / / / > =========|_|==============|___/=/_/_/_/ > :: Spring Boot :: (v1.4.0.M3) > 2016-06-14 14:34:55.166 INFO 5790 --- [ main] o.j.n.q.spring.QuickstartApplication : Starting QuickstartApplication on jaime.eng.hst.ams2.redhat.com with PID 5790 (/home/hudson/workspace/btny-pulls-narayana-quickstart/spring/narayana-spring-boot/target/classes started by hudson in /home/hudson/workspace/btny-pulls-narayana-quickstart/spring/narayana-spring-boot) > 2016-06-14 14:34:55.167 INFO 5790 --- [ main] o.j.n.q.spring.QuickstartApplication : No active profile set, falling back to default profiles: default > 2016-06-14 14:34:55.170 INFO 5790 --- [ main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext at 1d0cdb6: startup date [Tue Jun 14 14:34:55 BST 2016]; root of context hierarchy > 2016-06-14 14:34:55.655 INFO 5790 --- [ main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring > 2016-06-14 14:34:55.787 INFO 5790 --- [ main] com.arjuna.ats.jbossatx : ARJUNA032010: JBossTS Recovery Service (tag: unknown) - JBoss Inc. > 2016-06-14 14:34:55.787 INFO 5790 --- [ main] com.arjuna.ats.jbossatx : ARJUNA032013: Starting transaction recovery manager > 2016-06-14 14:34:55.870 INFO 5790 --- [ main] o.s.t.jta.JtaTransactionManager : Using JTA UserTransaction: Transaction: unknown > 2016-06-14 14:34:55.870 INFO 5790 --- [ main] o.s.t.jta.JtaTransactionManager : Using JTA TransactionManager: Transaction: unknown > 2016-06-14 14:34:55.980 INFO 5790 --- [ main] j.LocalContainerEntityManagerFactoryBean : Building JPA container EntityManagerFactory for persistence unit 'default' > 2016-06-14 14:34:55.981 INFO 5790 --- [ main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [ > name: default > ...] > 2016-06-14 14:34:55.995 INFO 5790 --- [ main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect > 2016-06-14 14:34:56.040 INFO 5790 --- [ main] o.h.t.schema.internal.SchemaCreatorImpl : HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl at 637cff' > 2016-06-14 14:34:56.045 INFO 5790 --- [ main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' > 2016-06-14 14:34:56.191 INFO 5790 --- [ main] org.apache.activemq.artemis.core.server : AMQ221000: live Message Broker is starting with configuration Broker Configuration (clustered=false,journalDirectory=/tmp/artemis-data/journal,bindingsDirectory=data/bindings,largeMessagesDirectory=data/largemessages,pagingDirectory=data/paging) > 2016-06-14 14:34:56.192 INFO 5790 --- [ main] org.apache.activemq.artemis.core.server : AMQ221045: libaio is not available, switching the configuration into NIO > 2016-06-14 14:34:56.193 INFO 5790 --- [ main] org.apache.activemq.artemis.core.server : AMQ221043: Protocol module found: [artemis-server]. Adding protocol support for: CORE > 2016-06-14 14:34:56.220 INFO 5790 --- [ main] org.apache.activemq.artemis.core.server : AMQ221003: Trying to deploy queue jms.queue.quickstart-messages > 2016-06-14 14:34:56.231 INFO 5790 --- [ main] org.apache.activemq.artemis.core.server : AMQ221007: Server is now live > 2016-06-14 14:34:56.231 INFO 5790 --- [ main] org.apache.activemq.artemis.core.server : AMQ221001: Apache ActiveMQ Artemis Message Broker version 1.2.0 [localhost, nodeID=c852656c-3234-11e6-94cb-52540027ba72] > 2016-06-14 14:34:56.496 INFO 5790 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup > 2016-06-14 14:34:56.503 INFO 5790 --- [ main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase 2147483647 > 2016-06-14 14:34:56.509 INFO 5790 --- [ main] o.j.n.q.spring.QuickstartApplication : Started QuickstartApplication in 1.418 seconds (JVM running for 10.75) > 2016-06-14 14:34:56.520 INFO 5790 --- [ main] o.h.h.i.QueryTranslatorFactoryInitiator : HHH000397: Using ASTQueryTranslatorFactory > Entries at the start: [] > Creating entry 'Test Value' > Entries at the end: [Entry{id=1, value='Test Value'}] > 2016-06-14 14:34:57.444 INFO 5790 --- [ main] s.c.a.AnnotationConfigApplicationContext : Closing org.springframework.context.annotation.AnnotationConfigApplicationContext at 1d0cdb6: startup date [Tue Jun 14 14:34:55 BST 2016]; root of context hierarchy > 2016-06-14 14:34:57.446 INFO 5790 --- [ main] o.s.c.support.DefaultLifecycleProcessor : Stopping beans in phase 2147483647 > 2016-06-14 14:34:57.447 WARN 5790 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer : Rejecting received message because of the listener container having been stopped in the meantime: ActiveMQMessage[ID:c88ada9c-3234-11e6-94cb-52540027ba72]:PERSISTENT/ClientMessage[messageID=7, durable=true, address=jms.queue.quickstart-messages,userID=c88ada9c-3234-11e6-94cb-52540027ba72,properties=TypedProperties[__AMQ_CID=c8897b08-3234-11e6-94cb-52540027ba72]] > 2016-06-14 14:34:57.456 INFO 5790 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown > 2016-06-14 14:34:57.466 INFO 5790 --- [ main] org.apache.activemq.artemis.core.server : AMQ221002: Apache ActiveMQ Artemis Message Broker version 1.2.0 [c852656c-3234-11e6-94cb-52540027ba72] stopped, uptime 1.275 seconds > 2016-06-14 14:34:57.469 INFO 5790 --- [ main] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default' > 2016-06-14 14:34:57.470 INFO 5790 --- [ main] .SchemaDropperImpl$DelayedDropActionImpl : HHH000477: Starting delayed drop of schema as part of SessionFactory shut-down' > 2016-06-14 14:34:57.488 INFO 5790 --- [ main] com.arjuna.ats.jbossatx : ARJUNA032014: Stopping transaction recovery manager > " > at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:20) > at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:8) > at org.jboss.narayana.quickstart.spring.QuickstartApplicationTests.testCommit(QuickstartApplicationTests.java:41) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:497) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) > at org.springframework.boot.test.rule.OutputCapture$1.evaluate(OutputCapture.java:61) > at org.junit.rules.RunRules.evaluate(RunRules.java:20) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) > at org.junit.runners.ParentRunner.run(ParentRunner.java:363) > at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:53) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:123) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:104) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:497) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:164) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:110) > at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:175) > at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcessWhenForked(SurefireStarter.java:107) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:68) > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 2 06:16:00 2016 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Wed, 2 Nov 2016 06:16:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2449) SPI class ServerVMClientUserTransaction should be Serializable and Referenceable In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2449?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13315926#comment-13315926 ] RH Bugzilla Integration commented on JBTM-2449: ----------------------------------------------- Matej Novotny changed the Status of [bug 1235886|https://bugzilla.redhat.com/show_bug.cgi?id=1235886] from ON_QA to VERIFIED > SPI class ServerVMClientUserTransaction should be Serializable and Referenceable > -------------------------------------------------------------------------------- > > Key: JBTM-2449 > URL: https://issues.jboss.org/browse/JBTM-2449 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: SPI > Affects Versions: 5.1.1 > Reporter: Michael Musgrove > Assignee: Michael Musgrove > Fix For: 5.3.5.Final > > > This SPI class implements UserTransaction but does not follow the JNDI conventions. The JTA specification (section 3.1) says: > bq. The implementation of the UserTransaction object must be both javax.naming.Referenceable and java.io.Serializable , so that the object can be stored in all JNDI naming contexts. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 2 06:39:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 2 Nov 2016 06:39:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2783) Add suspend and resume methods to RecoveryManagerService application server integration code In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2783?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2783: -------------------------------- Summary: Add suspend and resume methods to RecoveryManagerService application server integration code (was: Add suspend and resume methods to RecoveryManagerService) > Add suspend and resume methods to RecoveryManagerService application server integration code > -------------------------------------------------------------------------------------------- > > Key: JBTM-2783 > URL: https://issues.jboss.org/browse/JBTM-2783 > Project: JBoss Transaction Manager > Issue Type: Feature Request > Components: Application Server Integration > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Fix For: 5.next > > > Recovery manager service in WildFly needs to be able to suspend and resume recovery manager service. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 2 07:10:04 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Wed, 2 Nov 2016 07:10:04 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2783) Add suspend and resume methods to RecoveryManagerService application server integration code In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2783?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gytis Trikleris updated JBTM-2783: ---------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > Add suspend and resume methods to RecoveryManagerService application server integration code > -------------------------------------------------------------------------------------------- > > Key: JBTM-2783 > URL: https://issues.jboss.org/browse/JBTM-2783 > Project: JBoss Transaction Manager > Issue Type: Feature Request > Components: Application Server Integration > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Fix For: 5.next > > > Recovery manager service in WildFly needs to be able to suspend and resume recovery manager service. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Fri Nov 4 07:28:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Fri, 4 Nov 2016 07:28:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2767) JCA inflowed JTS transactions can throw NPE In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2767?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2767: -------------------------------- Issue Type: Enhancement (was: Bug) > JCA inflowed JTS transactions can throw NPE > ------------------------------------------- > > Key: JBTM-2767 > URL: https://issues.jboss.org/browse/JBTM-2767 > Project: JBoss Transaction Manager > Issue Type: Enhancement > Components: JTS > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Minor > Fix For: 5.next > > > If an XAResource throws a heuristic we can't forget it but we do clean up some transactional state meaning it will need reloading from disk (after the heuristic is cleared) before it can be meaningfully used again. In the state where it can't be meaningfully used we need to provide something to the caller. > [1] > {code} > 2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) java.lang.NullPointerException2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1)? > at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.SubordinateAtomicTransaction.getXid(SubordinateAtomicTransaction.java:80)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.TransactionImple.baseXid(TransactionImple.java:126)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1)? at com.arjuna.ats.internal.jta.transaction.jts.jca.TransactionImporterImple.getImportedTransaction(TransactionImporterImple.java:135)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at com.arjuna.ats.internal.jta.transaction.jts.jca.XATerminatorImple.commit(XATerminatorImple.java:83)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit.run(Unknown Source)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.jca.core.workmanager.WorkWrapper.run(WorkWrapper.java:223)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.SimpleDirectExecutor.execute(SimpleDirectExecutor.java:33)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor.runTask(QueueExecutor.java:808)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor.access$100(QueueExecutor.java:45)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor$Worker.run(QueueExecutor.java:828)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at java.lang.Thread.run(Thread.java:745)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.JBossThread.run(JBossThread.java:320) > 2016-10-05 16:19:23,538 ERROR [org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit] (default-threads - 1) Unspecified sever exception: java.lang.NullPointerException?at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.TransactionImple.recover(TransactionImple.java:135) > ?at com.arjuna.ats.internal.jta.transaction.jts.jca.TransactionImporterImple.getImportedTransaction(TransactionImporterImple.java:141) > ?at com.arjuna.ats.internal.jta.transaction.jts.jca.XATerminatorImple.commit(XATerminatorImple.java:83)?at org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit.run(Unknown Source)?at org.jboss.jca.core.workmanager.WorkWrapper.run(WorkWrapper.java:223) > ?at org.jboss.threads.SimpleDirectExecutor.execute(SimpleDirectExecutor.java:33)?at org.jboss.threads.QueueExecutor.runTask(QueueExecutor.java:808) > ?at org.jboss.threads.QueueExecutor.access$100(QueueExecutor.java:45) > ?at org.jboss.threads.QueueExecutor$Worker.run(QueueExecutor.java:828) > ?at java.lang.Thread.run(Thread.java:745) > ?at org.jboss.threads.JBossThread.run(JBossThread.java:320) > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Fri Nov 4 07:29:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Fri, 4 Nov 2016 07:29:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2767) Updated to allow JTS JCA imported transactions to have clearHeuristic called on their participants In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2767?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2767: -------------------------------- Summary: Updated to allow JTS JCA imported transactions to have clearHeuristic called on their participants (was: JCA inflowed JTS transactions can throw NPE) > Updated to allow JTS JCA imported transactions to have clearHeuristic called on their participants > -------------------------------------------------------------------------------------------------- > > Key: JBTM-2767 > URL: https://issues.jboss.org/browse/JBTM-2767 > Project: JBoss Transaction Manager > Issue Type: Enhancement > Components: JTS > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Minor > Fix For: 5.next > > > If an XAResource throws a heuristic we can't forget it but we do clean up some transactional state meaning it will need reloading from disk (after the heuristic is cleared) before it can be meaningfully used again. In the state where it can't be meaningfully used we need to provide something to the caller. > [1] > {code} > 2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) java.lang.NullPointerException2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1)? > at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.SubordinateAtomicTransaction.getXid(SubordinateAtomicTransaction.java:80)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.TransactionImple.baseXid(TransactionImple.java:126)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1)? at com.arjuna.ats.internal.jta.transaction.jts.jca.TransactionImporterImple.getImportedTransaction(TransactionImporterImple.java:135)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at com.arjuna.ats.internal.jta.transaction.jts.jca.XATerminatorImple.commit(XATerminatorImple.java:83)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit.run(Unknown Source)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.jca.core.workmanager.WorkWrapper.run(WorkWrapper.java:223)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.SimpleDirectExecutor.execute(SimpleDirectExecutor.java:33)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor.runTask(QueueExecutor.java:808)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor.access$100(QueueExecutor.java:45)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor$Worker.run(QueueExecutor.java:828)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at java.lang.Thread.run(Thread.java:745)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.JBossThread.run(JBossThread.java:320) > 2016-10-05 16:19:23,538 ERROR [org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit] (default-threads - 1) Unspecified sever exception: java.lang.NullPointerException?at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.TransactionImple.recover(TransactionImple.java:135) > ?at com.arjuna.ats.internal.jta.transaction.jts.jca.TransactionImporterImple.getImportedTransaction(TransactionImporterImple.java:141) > ?at com.arjuna.ats.internal.jta.transaction.jts.jca.XATerminatorImple.commit(XATerminatorImple.java:83)?at org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit.run(Unknown Source)?at org.jboss.jca.core.workmanager.WorkWrapper.run(WorkWrapper.java:223) > ?at org.jboss.threads.SimpleDirectExecutor.execute(SimpleDirectExecutor.java:33)?at org.jboss.threads.QueueExecutor.runTask(QueueExecutor.java:808) > ?at org.jboss.threads.QueueExecutor.access$100(QueueExecutor.java:45) > ?at org.jboss.threads.QueueExecutor$Worker.run(QueueExecutor.java:828) > ?at java.lang.Thread.run(Thread.java:745) > ?at org.jboss.threads.JBossThread.run(JBossThread.java:320) > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Fri Nov 4 07:29:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Fri, 4 Nov 2016 07:29:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2767) Allow JTS JCA imported transactions to have clearHeuristic called on their participants In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2767?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2767: -------------------------------- Summary: Allow JTS JCA imported transactions to have clearHeuristic called on their participants (was: Updated to allow JTS JCA imported transactions to have clearHeuristic called on their participants) > Allow JTS JCA imported transactions to have clearHeuristic called on their participants > --------------------------------------------------------------------------------------- > > Key: JBTM-2767 > URL: https://issues.jboss.org/browse/JBTM-2767 > Project: JBoss Transaction Manager > Issue Type: Enhancement > Components: JCA, JTS > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Minor > Fix For: 5.next > > > If an XAResource throws a heuristic we can't forget it but we do clean up some transactional state meaning it will need reloading from disk (after the heuristic is cleared) before it can be meaningfully used again. In the state where it can't be meaningfully used we need to provide something to the caller. > [1] > {code} > 2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) java.lang.NullPointerException2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1)? > at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.SubordinateAtomicTransaction.getXid(SubordinateAtomicTransaction.java:80)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.TransactionImple.baseXid(TransactionImple.java:126)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1)? at com.arjuna.ats.internal.jta.transaction.jts.jca.TransactionImporterImple.getImportedTransaction(TransactionImporterImple.java:135)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at com.arjuna.ats.internal.jta.transaction.jts.jca.XATerminatorImple.commit(XATerminatorImple.java:83)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit.run(Unknown Source)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.jca.core.workmanager.WorkWrapper.run(WorkWrapper.java:223)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.SimpleDirectExecutor.execute(SimpleDirectExecutor.java:33)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor.runTask(QueueExecutor.java:808)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor.access$100(QueueExecutor.java:45)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor$Worker.run(QueueExecutor.java:828)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at java.lang.Thread.run(Thread.java:745)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.JBossThread.run(JBossThread.java:320) > 2016-10-05 16:19:23,538 ERROR [org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit] (default-threads - 1) Unspecified sever exception: java.lang.NullPointerException?at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.TransactionImple.recover(TransactionImple.java:135) > ?at com.arjuna.ats.internal.jta.transaction.jts.jca.TransactionImporterImple.getImportedTransaction(TransactionImporterImple.java:141) > ?at com.arjuna.ats.internal.jta.transaction.jts.jca.XATerminatorImple.commit(XATerminatorImple.java:83)?at org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit.run(Unknown Source)?at org.jboss.jca.core.workmanager.WorkWrapper.run(WorkWrapper.java:223) > ?at org.jboss.threads.SimpleDirectExecutor.execute(SimpleDirectExecutor.java:33)?at org.jboss.threads.QueueExecutor.runTask(QueueExecutor.java:808) > ?at org.jboss.threads.QueueExecutor.access$100(QueueExecutor.java:45) > ?at org.jboss.threads.QueueExecutor$Worker.run(QueueExecutor.java:828) > ?at java.lang.Thread.run(Thread.java:745) > ?at org.jboss.threads.JBossThread.run(JBossThread.java:320) > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Fri Nov 4 07:29:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Fri, 4 Nov 2016 07:29:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2767) Updated to allow JTS JCA imported transactions to have clearHeuristic called on their participants In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2767?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2767: -------------------------------- Component/s: JCA > Updated to allow JTS JCA imported transactions to have clearHeuristic called on their participants > -------------------------------------------------------------------------------------------------- > > Key: JBTM-2767 > URL: https://issues.jboss.org/browse/JBTM-2767 > Project: JBoss Transaction Manager > Issue Type: Enhancement > Components: JCA, JTS > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Minor > Fix For: 5.next > > > If an XAResource throws a heuristic we can't forget it but we do clean up some transactional state meaning it will need reloading from disk (after the heuristic is cleared) before it can be meaningfully used again. In the state where it can't be meaningfully used we need to provide something to the caller. > [1] > {code} > 2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) java.lang.NullPointerException2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1)? > at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.SubordinateAtomicTransaction.getXid(SubordinateAtomicTransaction.java:80)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.TransactionImple.baseXid(TransactionImple.java:126)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1)? at com.arjuna.ats.internal.jta.transaction.jts.jca.TransactionImporterImple.getImportedTransaction(TransactionImporterImple.java:135)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at com.arjuna.ats.internal.jta.transaction.jts.jca.XATerminatorImple.commit(XATerminatorImple.java:83)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit.run(Unknown Source)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.jca.core.workmanager.WorkWrapper.run(WorkWrapper.java:223)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.SimpleDirectExecutor.execute(SimpleDirectExecutor.java:33)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor.runTask(QueueExecutor.java:808)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor.access$100(QueueExecutor.java:45)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor$Worker.run(QueueExecutor.java:828)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at java.lang.Thread.run(Thread.java:745)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.JBossThread.run(JBossThread.java:320) > 2016-10-05 16:19:23,538 ERROR [org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit] (default-threads - 1) Unspecified sever exception: java.lang.NullPointerException?at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.TransactionImple.recover(TransactionImple.java:135) > ?at com.arjuna.ats.internal.jta.transaction.jts.jca.TransactionImporterImple.getImportedTransaction(TransactionImporterImple.java:141) > ?at com.arjuna.ats.internal.jta.transaction.jts.jca.XATerminatorImple.commit(XATerminatorImple.java:83)?at org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit.run(Unknown Source)?at org.jboss.jca.core.workmanager.WorkWrapper.run(WorkWrapper.java:223) > ?at org.jboss.threads.SimpleDirectExecutor.execute(SimpleDirectExecutor.java:33)?at org.jboss.threads.QueueExecutor.runTask(QueueExecutor.java:808) > ?at org.jboss.threads.QueueExecutor.access$100(QueueExecutor.java:45) > ?at org.jboss.threads.QueueExecutor$Worker.run(QueueExecutor.java:828) > ?at java.lang.Thread.run(Thread.java:745) > ?at org.jboss.threads.JBossThread.run(JBossThread.java:320) > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Fri Nov 4 07:30:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Fri, 4 Nov 2016 07:30:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2767) Allow JTS JCA imported transactions to have clearHeuristic called on their participants In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2767?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2767: -------------------------------- Issue Type: Bug (was: Enhancement) > Allow JTS JCA imported transactions to have clearHeuristic called on their participants > --------------------------------------------------------------------------------------- > > Key: JBTM-2767 > URL: https://issues.jboss.org/browse/JBTM-2767 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JCA, JTS > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Minor > Fix For: 5.next > > > If an XAResource throws a heuristic we can't forget it but we do clean up some transactional state meaning it will need reloading from disk (after the heuristic is cleared) before it can be meaningfully used again. In the state where it can't be meaningfully used we need to provide something to the caller. > [1] > {code} > 2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) java.lang.NullPointerException2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1)? > at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.SubordinateAtomicTransaction.getXid(SubordinateAtomicTransaction.java:80)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.TransactionImple.baseXid(TransactionImple.java:126)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1)? at com.arjuna.ats.internal.jta.transaction.jts.jca.TransactionImporterImple.getImportedTransaction(TransactionImporterImple.java:135)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at com.arjuna.ats.internal.jta.transaction.jts.jca.XATerminatorImple.commit(XATerminatorImple.java:83)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit.run(Unknown Source)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.jca.core.workmanager.WorkWrapper.run(WorkWrapper.java:223)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.SimpleDirectExecutor.execute(SimpleDirectExecutor.java:33)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor.runTask(QueueExecutor.java:808)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor.access$100(QueueExecutor.java:45)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor$Worker.run(QueueExecutor.java:828)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at java.lang.Thread.run(Thread.java:745)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.JBossThread.run(JBossThread.java:320) > 2016-10-05 16:19:23,538 ERROR [org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit] (default-threads - 1) Unspecified sever exception: java.lang.NullPointerException?at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.TransactionImple.recover(TransactionImple.java:135) > ?at com.arjuna.ats.internal.jta.transaction.jts.jca.TransactionImporterImple.getImportedTransaction(TransactionImporterImple.java:141) > ?at com.arjuna.ats.internal.jta.transaction.jts.jca.XATerminatorImple.commit(XATerminatorImple.java:83)?at org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit.run(Unknown Source)?at org.jboss.jca.core.workmanager.WorkWrapper.run(WorkWrapper.java:223) > ?at org.jboss.threads.SimpleDirectExecutor.execute(SimpleDirectExecutor.java:33)?at org.jboss.threads.QueueExecutor.runTask(QueueExecutor.java:808) > ?at org.jboss.threads.QueueExecutor.access$100(QueueExecutor.java:45) > ?at org.jboss.threads.QueueExecutor$Worker.run(QueueExecutor.java:828) > ?at java.lang.Thread.run(Thread.java:745) > ?at org.jboss.threads.JBossThread.run(JBossThread.java:320) > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Fri Nov 4 08:20:00 2016 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Fri, 4 Nov 2016 08:20:00 -0400 (EDT) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2343) Add a new Observer SPI for tracking transaction state association changes In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13317441#comment-13317441 ] RH Bugzilla Integration commented on JBTM-2343: ----------------------------------------------- tom.jenkinson at redhat.com changed the Status of [bug 1238926|https://bugzilla.redhat.com/show_bug.cgi?id=1238926] from MODIFIED to CLOSED > Add a new Observer SPI for tracking transaction state association changes > ------------------------------------------------------------------------- > > Key: JBTM-2343 > URL: https://issues.jboss.org/browse/JBTM-2343 > Project: JBoss Transaction Manager > Issue Type: Feature Request > Components: SPI > Affects Versions: 5.0.4 > Reporter: Michael Musgrove > Assignee: Michael Musgrove > Fix For: 5.1.0 > > > We need a new interface to enable users to track thread-to-transaction association changes. See related JBTM-2342 for details -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 7 06:27:00 2016 From: issues at jboss.org (Michael Musgrove (JIRA)) Date: Mon, 7 Nov 2016 06:27:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2785) Provide a tooling operation to suspend the recovery manager In-Reply-To: References: Message-ID: Michael Musgrove created JBTM-2785: -------------------------------------- Summary: Provide a tooling operation to suspend the recovery manager Key: JBTM-2785 URL: https://issues.jboss.org/browse/JBTM-2785 Project: JBoss Transaction Manager Issue Type: Feature Request Components: Tooling Affects Versions: 5.3.5.Final Reporter: Michael Musgrove Assignee: Michael Musgrove Some tooling operations update the state of transaction log records and these updates could interfere with what the recovery manager is doing. Tooling updates should pause the recovery manager prior to performing such updates. Since tooling and recovery can run in different JVMs we need an MBean operation to suspend/resume the recovery manager to protect against this scenario. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 7 06:44:00 2016 From: issues at jboss.org (Michael Musgrove (JIRA)) Date: Mon, 7 Nov 2016 06:44:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2785) Provide a tooling operation to suspend/resume the recovery manager In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2785?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael Musgrove updated JBTM-2785: ----------------------------------- Summary: Provide a tooling operation to suspend/resume the recovery manager (was: Provide a tooling operation to suspend the recovery manager) > Provide a tooling operation to suspend/resume the recovery manager > ------------------------------------------------------------------ > > Key: JBTM-2785 > URL: https://issues.jboss.org/browse/JBTM-2785 > Project: JBoss Transaction Manager > Issue Type: Feature Request > Components: Tooling > Affects Versions: 5.3.5.Final > Reporter: Michael Musgrove > Assignee: Michael Musgrove > > Some tooling operations update the state of transaction log records and these updates could interfere with what the recovery manager is doing. Tooling updates should pause the recovery manager prior to performing such updates. Since tooling and recovery can run in different JVMs we need an MBean operation to suspend/resume the recovery manager to protect against this scenario. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 7 06:47:00 2016 From: issues at jboss.org (Michael Musgrove (JIRA)) Date: Mon, 7 Nov 2016 06:47:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2785) Provide a tooling operation to suspend/resume the recovery manager In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2785?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13318067#comment-13318067 ] Michael Musgrove commented on JBTM-2785: ---------------------------------------- Note that I have not raised a corresponding documentation issue because we only support transaction log management (in WildFly/EAP) in the same process that the recovery manager is running so we can call the (MBean) suspend/resume operations directly from the tooling so there is nothing that user needs to do (and therefore no documentation requirement). > Provide a tooling operation to suspend/resume the recovery manager > ------------------------------------------------------------------ > > Key: JBTM-2785 > URL: https://issues.jboss.org/browse/JBTM-2785 > Project: JBoss Transaction Manager > Issue Type: Feature Request > Components: Tooling > Affects Versions: 5.3.5.Final > Reporter: Michael Musgrove > Assignee: Michael Musgrove > > Some tooling operations update the state of transaction log records and these updates could interfere with what the recovery manager is doing. Tooling updates should pause the recovery manager prior to performing such updates. Since tooling and recovery can run in different JVMs we need an MBean operation to suspend/resume the recovery manager to protect against this scenario. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 8 08:51:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 8 Nov 2016 08:51:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2786) MySQL JDBCStore occasionally gets deadlock exception In-Reply-To: References: Message-ID: Tom Jenkinson created JBTM-2786: ----------------------------------- Summary: MySQL JDBCStore occasionally gets deadlock exception Key: JBTM-2786 URL: https://issues.jboss.org/browse/JBTM-2786 Project: JBoss Transaction Manager Issue Type: Task Components: Transaction Core Reporter: Tom Jenkinson Assignee: Tom Jenkinson Fix For: 5.next Occasionally in QA tests we see the MySQL CI job fail with messages about deadlocks. >From what I can see from http://stackoverflow.com/questions/2332768/how-to-avoid-mysql-deadlock-found-when-trying-to-get-lock-try-restarting-trans it can be because the where clauses are not ordered the same so a table lock can happen. Reordering the where clauses would hopefully fix this. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 8 09:37:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 8 Nov 2016 09:37:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2787) TestGroup_txcore_recovery::Recovery_Crash_StateManager_Test004 fails with DB2 In-Reply-To: References: Message-ID: Tom Jenkinson created JBTM-2787: ----------------------------------- Summary: TestGroup_txcore_recovery::Recovery_Crash_StateManager_Test004 fails with DB2 Key: JBTM-2787 URL: https://issues.jboss.org/browse/JBTM-2787 Project: JBoss Transaction Manager Issue Type: Bug Components: Testing Reporter: Tom Jenkinson Assignee: Tom Jenkinson Fix For: 5.next When DB2 tests are running (this is a very slow configuration for CI) the recovery manager process appears to be interfering with the setup of the test. Set up of test: 2016-11-06 16:04:03,172 out: 2016-11-06 16:04:03,172 [main] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:4 could not be transitioned to committed Recovery manager process: 2016-11-06 16:04:24,188 out: 2016-11-06 16:04:24,188 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:1 could not be transitioned to committed 2016-11-06 16:04:24,225 out: 2016-11-06 16:04:24,225 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012016: PersistenceRecord::topLevelCommit - commit_state call failed for 0:ffffac11000a:c397:581f5466:1 2016-11-06 16:04:24,225 out: 2016-11-06 16:04:24,225 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012022: PersistenceRecord::topLevelCommit - commit_state error 2016-11-06 16:04:25,504 out: 2016-11-06 16:04:25,504 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:3 could not be transitioned to committed 2016-11-06 16:04:25,549 out: 2016-11-06 16:04:25,549 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012016: PersistenceRecord::topLevelCommit - commit_state call failed for 0:ffffac11000a:c397:581f5466:3 2016-11-06 16:04:25,549 out: 2016-11-06 16:04:25,549 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012022: PersistenceRecord::topLevelCommit - commit_state error 2016-11-06 16:04:37,523 out: 2016-11-06 16:04:37,523 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:4 could not be transitioned to committed -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 8 09:43:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 8 Nov 2016 09:43:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2787) TestGroup_txcore_recovery::Recovery_Crash_StateManager_Test004 fails with DB2 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2787?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Issue was automatically transitioned when Tom Jenkinson created pull request #1088 in GitHub -------------------------------------------------------------------------------------------- Status: Pull Request Sent (was: Open) > TestGroup_txcore_recovery::Recovery_Crash_StateManager_Test004 fails with DB2 > ----------------------------------------------------------------------------- > > Key: JBTM-2787 > URL: https://issues.jboss.org/browse/JBTM-2787 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: Testing > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > When DB2 tests are running (this is a very slow configuration for CI) the recovery manager process appears to be interfering with the setup of the test. > Set up of test: > 2016-11-06 16:04:03,172 out: 2016-11-06 16:04:03,172 [main] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:4 could not be transitioned to committed > Recovery manager process: > 2016-11-06 16:04:24,188 out: 2016-11-06 16:04:24,188 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:1 could not be transitioned to committed > 2016-11-06 16:04:24,225 out: 2016-11-06 16:04:24,225 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012016: PersistenceRecord::topLevelCommit - commit_state call failed for 0:ffffac11000a:c397:581f5466:1 > 2016-11-06 16:04:24,225 out: 2016-11-06 16:04:24,225 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012022: PersistenceRecord::topLevelCommit - commit_state error > 2016-11-06 16:04:25,504 out: 2016-11-06 16:04:25,504 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:3 could not be transitioned to committed > 2016-11-06 16:04:25,549 out: 2016-11-06 16:04:25,549 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012016: PersistenceRecord::topLevelCommit - commit_state call failed for 0:ffffac11000a:c397:581f5466:3 > 2016-11-06 16:04:25,549 out: 2016-11-06 16:04:25,549 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012022: PersistenceRecord::topLevelCommit - commit_state error > 2016-11-06 16:04:37,523 out: 2016-11-06 16:04:37,523 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:4 could not be transitioned to committed -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 8 10:12:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 8 Nov 2016 10:12:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2763) problem running with hibernate In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2763?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Issue was automatically transitioned when Tom Jenkinson created pull request #1089 in GitHub -------------------------------------------------------------------------------------------- Status: Pull Request Sent (was: Open) > problem running with hibernate > ------------------------------ > > Key: JBTM-2763 > URL: https://issues.jboss.org/browse/JBTM-2763 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JTA > Affects Versions: 5.3.5.Final > Environment: Spring 4.3.3.RELEASE > Hibernate 5.1.2.Final > Narayana 5.3.5 > Not in an application server - running standalone spring app > Reporter: davidkarlsen > > With the same libraries as above, except narayana 5.3.5 the following config worked just fine: > {noformat} > > > > > > > > > > > > > > > org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory > ${hibernate.cache.use_query_cache} > ${hibernate.cache.use_second_level_cache} > ${hibernate.generate_statistics} > ${hibernate.cache.use_structured_entries} > ${hibernate.transaction.jta.platform:org.hibernate.engine.transaction.jta.platform.internal.JBossStandAloneJtaPlatform} > > ${hibernate.connection.release_mode:AFTER_STATEMENT} > ${hibernate.jdbc.use_get_generated_keys} > ${hibernate.jdbc.fetch_size} > ${hibernate.jdbc.batch_size} > ${hibernate.showSql} > ${hibernate.format_sql} > ${hibernate.use_sql_comments} > > > > {noformat} > If I upgrade Narayana to 5.3.5 I consistently get: > {noformat} > java.sql.SQLSyntaxErrorException: ORA-02049: timeout: distributed transaction waiting for lock > at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:450) > at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:399) > at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1059) > at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:522) > at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:257) > at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:587) > at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:210) > at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:30) > at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:931) > at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1150) > at oracle.jdbc.driver.OracleStatement.executeInternal(OracleStatement.java:1792) > at oracle.jdbc.driver.OracleStatement.execute(OracleStatement.java:1745) > at oracle.jdbc.driver.OracleStatementWrapper.execute(OracleStatementWrapper.java:334) > at sun.reflect.GeneratedMethodAccessor84.invoke(Unknown Source) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:498) > at net.bull.javamelody.JdbcWrapper.doExecute(JdbcWrapper.java:404) > at net.bull.javamelody.JdbcWrapper$StatementInvocationHandler.invoke(JdbcWrapper.java:129) > at net.bull.javamelody.JdbcWrapper$DelegatingInvocationHandler.invoke(JdbcWrapper.java:286) > at com.sun.proxy.$Proxy143.execute(Unknown Source) > at org.dbunit.database.statement.SimpleStatement.executeBatch(SimpleStatement.java:69) > at org.dbunit.operation.DeleteAllOperation.execute(DeleteAllOperation.java:126) > at org.dbunit.operation.CompositeOperation.execute(CompositeOperation.java:79) > at com.github.springtestdbunit.DbUnitRunner.setupOrTeardown(DbUnitRunner.java:183) > at com.github.springtestdbunit.DbUnitRunner.beforeTestMethod(DbUnitRunner.java:75) > at com.github.springtestdbunit.DbUnitTestExecutionListener.beforeTestMethod(DbUnitTestExecutionListener.java:185) > at org.springframework.test.context.TestContextManager.beforeTestMethod(TestContextManager.java:269) > at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) > at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86) > at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55) > at org.junit.rules.RunRules.evaluate(RunRules.java:20) > at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:252) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) > at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) > at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) > at org.junit.runners.ParentRunner.run(ParentRunner.java:363) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:367) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:274) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:161) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:290) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:242) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter. > {noformat} > If I leave hibernate.connection.release_mode to default (e.g. not specifying it) or after_transaction I get: > {noformat} > WARN com.arjuna.ats.jta - ARJUNA016029: SynchronizationImple.afterCompletion - failed for org.hibernate.resource.transaction.backend.jta.internal.synchronization.RegisteredSynchronization at 6811fa19 with exception > 22:59:01 java.lang.NullPointerException: null > 22:59:01 at com.arjuna.ats.internal.jdbc.ConnectionImple.getConnection(ConnectionImple.java:864) > 22:59:01 at com.arjuna.ats.internal.jdbc.ConnectionImple.getWarnings(ConnectionImple.java:476) > 22:59:01 at sun.reflect.GeneratedMethodAccessor113.invoke(Unknown Source) > 22:59:01 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > 22:59:01 at java.lang.reflect.Method.invoke(Method.java:498) > 22:59:01 at net.bull.javamelody.JdbcWrapper$ConnectionInvocationHandler.invoke(JdbcWrapper.java:189) > 22:59:01 at net.bull.javamelody.JdbcWrapper$DelegatingInvocationHandler.invoke(JdbcWrapper.java:286) > 22:59:01 at com.sun.proxy.$Proxy116.getWarnings(Unknown Source) > 22:59:01 at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.handleAndClearWarnings(SqlExceptionHelper.java:277) > 22:59:01 at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.logAndClearWarnings(SqlExceptionHelper.java:256) > 22:59:01 at org.hibernate.resource.jdbc.internal.LogicalConnectionManagedImpl.releaseConnection(LogicalConnectionManagedImpl.java:167) > 22:59:01 at org.hibernate.resource.jdbc.internal.LogicalConnectionManagedImpl.afterTransaction(LogicalConnectionManagedImpl.java:135) > 22:59:01 at org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl.afterTransaction(JdbcCoordinatorImpl.java:296) > 22:59:01 at org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl.afterTransactionCompletion(JdbcCoordinatorImpl.java:496) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.JtaTransactionCoordinatorImpl.afterCompletion(JtaTransactionCoordinatorImpl.java:345) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.SynchronizationCallbackCoordinatorNonTrackingImpl.doAfterCompletion(SynchronizationCallbackCoordinatorNonTrackingImpl.java:60) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.SynchronizationCallbackCoordinatorTrackingImpl.afterCompletion(SynchronizationCallbackCoordinatorTrackingImpl.java:72) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.RegisteredSynchronization.afterCompletion(RegisteredSynchronization.java:44) > 22:59:01 at com.arjuna.ats.internal.jta.resources.arjunacore.SynchronizationImple.afterCompletion(SynchronizationImple.java:96) > 22:59:01 at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.afterCompletion(TwoPhaseCoordinator.java:542) > 22:59:01 at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.end(TwoPhaseCoordinator.java:101) > 22:59:01 at com.arjuna.ats.arjuna.AtomicAction.commit(AtomicAction.java:162) > 22:59:01 at com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionImple.commitAndDisassociate(TransactionImple.java:1216) > 22:59:01 at com.arjuna.ats.internal.jta.transaction.arjunacore.BaseTransaction.commit(BaseTransaction.java:126) > 22:59:01 at org.springframework.transaction.jta.JtaTransactionManager.doCommit(JtaTransactionManager.java:1023) > 22:59:01 at org.springframework.transaction.support.AbstractPlatformTransactionManager.processCommit(AbstractPlatformTransactionManager.java:761) > 22:59:01 at org.springframework.transaction.support.AbstractPlatformTransactionManager.commit(AbstractPlatformTransactionManager.java:730) > 22:59:01 at org.springframework.transaction.interceptor.TransactionAspectSupport.commitTransactionAfterReturning(TransactionAspectSupport.java:487) > 22:59:01 at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:291) > 22:59:01 at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96) > 22:59:01 at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) > 22:59:01 at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92) > 22:59:01 at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) > 22:59:01 at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:213) > 22:59:01 at com.sun.proxy.$Proxy292.create(Unknown Source) > 22:59:01 at > {noformat} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 8 10:12:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 8 Nov 2016 10:12:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2763) problem running with hibernate In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2763?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson reassigned JBTM-2763: ----------------------------------- Assignee: Tom Jenkinson > problem running with hibernate > ------------------------------ > > Key: JBTM-2763 > URL: https://issues.jboss.org/browse/JBTM-2763 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JTA > Affects Versions: 5.3.5.Final > Environment: Spring 4.3.3.RELEASE > Hibernate 5.1.2.Final > Narayana 5.3.5 > Not in an application server - running standalone spring app > Reporter: davidkarlsen > Assignee: Tom Jenkinson > > With the same libraries as above, except narayana 5.3.5 the following config worked just fine: > {noformat} > > > > > > > > > > > > > > > org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory > ${hibernate.cache.use_query_cache} > ${hibernate.cache.use_second_level_cache} > ${hibernate.generate_statistics} > ${hibernate.cache.use_structured_entries} > ${hibernate.transaction.jta.platform:org.hibernate.engine.transaction.jta.platform.internal.JBossStandAloneJtaPlatform} > > ${hibernate.connection.release_mode:AFTER_STATEMENT} > ${hibernate.jdbc.use_get_generated_keys} > ${hibernate.jdbc.fetch_size} > ${hibernate.jdbc.batch_size} > ${hibernate.showSql} > ${hibernate.format_sql} > ${hibernate.use_sql_comments} > > > > {noformat} > If I upgrade Narayana to 5.3.5 I consistently get: > {noformat} > java.sql.SQLSyntaxErrorException: ORA-02049: timeout: distributed transaction waiting for lock > at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:450) > at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:399) > at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1059) > at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:522) > at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:257) > at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:587) > at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:210) > at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:30) > at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:931) > at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1150) > at oracle.jdbc.driver.OracleStatement.executeInternal(OracleStatement.java:1792) > at oracle.jdbc.driver.OracleStatement.execute(OracleStatement.java:1745) > at oracle.jdbc.driver.OracleStatementWrapper.execute(OracleStatementWrapper.java:334) > at sun.reflect.GeneratedMethodAccessor84.invoke(Unknown Source) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:498) > at net.bull.javamelody.JdbcWrapper.doExecute(JdbcWrapper.java:404) > at net.bull.javamelody.JdbcWrapper$StatementInvocationHandler.invoke(JdbcWrapper.java:129) > at net.bull.javamelody.JdbcWrapper$DelegatingInvocationHandler.invoke(JdbcWrapper.java:286) > at com.sun.proxy.$Proxy143.execute(Unknown Source) > at org.dbunit.database.statement.SimpleStatement.executeBatch(SimpleStatement.java:69) > at org.dbunit.operation.DeleteAllOperation.execute(DeleteAllOperation.java:126) > at org.dbunit.operation.CompositeOperation.execute(CompositeOperation.java:79) > at com.github.springtestdbunit.DbUnitRunner.setupOrTeardown(DbUnitRunner.java:183) > at com.github.springtestdbunit.DbUnitRunner.beforeTestMethod(DbUnitRunner.java:75) > at com.github.springtestdbunit.DbUnitTestExecutionListener.beforeTestMethod(DbUnitTestExecutionListener.java:185) > at org.springframework.test.context.TestContextManager.beforeTestMethod(TestContextManager.java:269) > at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) > at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86) > at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55) > at org.junit.rules.RunRules.evaluate(RunRules.java:20) > at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:252) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) > at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) > at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) > at org.junit.runners.ParentRunner.run(ParentRunner.java:363) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:367) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:274) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:161) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:290) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:242) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter. > {noformat} > If I leave hibernate.connection.release_mode to default (e.g. not specifying it) or after_transaction I get: > {noformat} > WARN com.arjuna.ats.jta - ARJUNA016029: SynchronizationImple.afterCompletion - failed for org.hibernate.resource.transaction.backend.jta.internal.synchronization.RegisteredSynchronization at 6811fa19 with exception > 22:59:01 java.lang.NullPointerException: null > 22:59:01 at com.arjuna.ats.internal.jdbc.ConnectionImple.getConnection(ConnectionImple.java:864) > 22:59:01 at com.arjuna.ats.internal.jdbc.ConnectionImple.getWarnings(ConnectionImple.java:476) > 22:59:01 at sun.reflect.GeneratedMethodAccessor113.invoke(Unknown Source) > 22:59:01 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > 22:59:01 at java.lang.reflect.Method.invoke(Method.java:498) > 22:59:01 at net.bull.javamelody.JdbcWrapper$ConnectionInvocationHandler.invoke(JdbcWrapper.java:189) > 22:59:01 at net.bull.javamelody.JdbcWrapper$DelegatingInvocationHandler.invoke(JdbcWrapper.java:286) > 22:59:01 at com.sun.proxy.$Proxy116.getWarnings(Unknown Source) > 22:59:01 at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.handleAndClearWarnings(SqlExceptionHelper.java:277) > 22:59:01 at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.logAndClearWarnings(SqlExceptionHelper.java:256) > 22:59:01 at org.hibernate.resource.jdbc.internal.LogicalConnectionManagedImpl.releaseConnection(LogicalConnectionManagedImpl.java:167) > 22:59:01 at org.hibernate.resource.jdbc.internal.LogicalConnectionManagedImpl.afterTransaction(LogicalConnectionManagedImpl.java:135) > 22:59:01 at org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl.afterTransaction(JdbcCoordinatorImpl.java:296) > 22:59:01 at org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl.afterTransactionCompletion(JdbcCoordinatorImpl.java:496) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.JtaTransactionCoordinatorImpl.afterCompletion(JtaTransactionCoordinatorImpl.java:345) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.SynchronizationCallbackCoordinatorNonTrackingImpl.doAfterCompletion(SynchronizationCallbackCoordinatorNonTrackingImpl.java:60) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.SynchronizationCallbackCoordinatorTrackingImpl.afterCompletion(SynchronizationCallbackCoordinatorTrackingImpl.java:72) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.RegisteredSynchronization.afterCompletion(RegisteredSynchronization.java:44) > 22:59:01 at com.arjuna.ats.internal.jta.resources.arjunacore.SynchronizationImple.afterCompletion(SynchronizationImple.java:96) > 22:59:01 at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.afterCompletion(TwoPhaseCoordinator.java:542) > 22:59:01 at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.end(TwoPhaseCoordinator.java:101) > 22:59:01 at com.arjuna.ats.arjuna.AtomicAction.commit(AtomicAction.java:162) > 22:59:01 at com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionImple.commitAndDisassociate(TransactionImple.java:1216) > 22:59:01 at com.arjuna.ats.internal.jta.transaction.arjunacore.BaseTransaction.commit(BaseTransaction.java:126) > 22:59:01 at org.springframework.transaction.jta.JtaTransactionManager.doCommit(JtaTransactionManager.java:1023) > 22:59:01 at org.springframework.transaction.support.AbstractPlatformTransactionManager.processCommit(AbstractPlatformTransactionManager.java:761) > 22:59:01 at org.springframework.transaction.support.AbstractPlatformTransactionManager.commit(AbstractPlatformTransactionManager.java:730) > 22:59:01 at org.springframework.transaction.interceptor.TransactionAspectSupport.commitTransactionAfterReturning(TransactionAspectSupport.java:487) > 22:59:01 at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:291) > 22:59:01 at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96) > 22:59:01 at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) > 22:59:01 at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92) > 22:59:01 at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) > 22:59:01 at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:213) > 22:59:01 at com.sun.proxy.$Proxy292.create(Unknown Source) > 22:59:01 at > {noformat} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 8 10:14:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 8 Nov 2016 10:14:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2673) ThreadUtil getThreadId(Thread) ignores argument In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2673?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Issue was automatically transitioned when Tom Jenkinson created pull request #1090 in GitHub -------------------------------------------------------------------------------------------- Status: Pull Request Sent (was: Open) > ThreadUtil getThreadId(Thread) ignores argument > ----------------------------------------------- > > Key: JBTM-2673 > URL: https://issues.jboss.org/browse/JBTM-2673 > Project: JBoss Transaction Manager > Issue Type: Bug > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > During investigation of https://developer.jboss.org/thread/269784?start=15&tstart=0 it was observed that the ThreadUtil implementation does not use the Thread argument and simply uses a ThreadLocal: > https://github.com/jbosstm/narayana/blob/master/ArjunaCore/arjuna/classes/com/arjuna/ats/arjuna/utils/ThreadUtil.java#L51 -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 8 10:51:01 2016 From: issues at jboss.org (Michael Musgrove (JIRA)) Date: Tue, 8 Nov 2016 10:51:01 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2788) TestGroup_txcore is missing from the documentation In-Reply-To: References: Message-ID: Michael Musgrove created JBTM-2788: -------------------------------------- Summary: TestGroup_txcore is missing from the documentation Key: JBTM-2788 URL: https://issues.jboss.org/browse/JBTM-2788 Project: JBoss Transaction Manager Issue Type: Enhancement Components: Documentation Affects Versions: 5.3.5.Final Reporter: Michael Musgrove Assignee: Michael Musgrove Priority: Minor The [narayana QA test suite documentation |http://narayana.io//docs/project/index.html#d0e18351] is missing a description of the tests in the TestGroup_txcore group. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 8 12:32:00 2016 From: issues at jboss.org (Michael Musgrove (JIRA)) Date: Tue, 8 Nov 2016 12:32:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2789) Replace deprecated resteasy classes In-Reply-To: References: Message-ID: Michael Musgrove created JBTM-2789: -------------------------------------- Summary: Replace deprecated resteasy classes Key: JBTM-2789 URL: https://issues.jboss.org/browse/JBTM-2789 Project: JBoss Transaction Manager Issue Type: Bug Components: Demonstrator Affects Versions: 5.3.5.Final Reporter: Michael Musgrove Assignee: Michael Musgrove Fix For: 5.next Replace resteasy classes with the jaxrs 2 equivalents in the jpa quickstart: http://narayanaci1.eng.hst.ams2.redhat.com/job/narayana-quickstarts-ipv6/4/consoleFull -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 8 13:16:00 2016 From: issues at jboss.org (Michael Musgrove (JIRA)) Date: Tue, 8 Nov 2016 13:16:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2789) Replace deprecated resteasy classes In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2789?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Issue was automatically transitioned when Michael Musgrove created pull request #180 in GitHub ---------------------------------------------------------------------------------------------- Status: Pull Request Sent (was: Open) > Replace deprecated resteasy classes > ----------------------------------- > > Key: JBTM-2789 > URL: https://issues.jboss.org/browse/JBTM-2789 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: Demonstrator > Affects Versions: 5.3.5.Final > Reporter: Michael Musgrove > Assignee: Michael Musgrove > Fix For: 5.next > > > Replace resteasy classes with the jaxrs 2 equivalents in the jpa quickstart: > http://narayanaci1.eng.hst.ams2.redhat.com/job/narayana-quickstarts-ipv6/4/consoleFull -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 05:29:00 2016 From: issues at jboss.org (Michael Musgrove (JIRA)) Date: Wed, 9 Nov 2016 05:29:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2789) Replace deprecated resteasy classes In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2789?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael Musgrove updated JBTM-2789: ----------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > Replace deprecated resteasy classes > ----------------------------------- > > Key: JBTM-2789 > URL: https://issues.jboss.org/browse/JBTM-2789 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: Demonstrator > Affects Versions: 5.3.5.Final > Reporter: Michael Musgrove > Assignee: Michael Musgrove > Fix For: 5.next > > > Replace resteasy classes with the jaxrs 2 equivalents in the jpa quickstart: > http://narayanaci1.eng.hst.ams2.redhat.com/job/narayana-quickstarts-ipv6/4/consoleFull -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 06:08:01 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 06:08:01 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2763) problem running with hibernate In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2763?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13319417#comment-13319417 ] Tom Jenkinson commented on JBTM-2763: ------------------------------------- I have noticed an issue with delistResource being called in close (which is happening in after completion) which it shouldn't be. I have corrected that in a linked PR. > problem running with hibernate > ------------------------------ > > Key: JBTM-2763 > URL: https://issues.jboss.org/browse/JBTM-2763 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JTA > Affects Versions: 5.3.5.Final > Environment: Spring 4.3.3.RELEASE > Hibernate 5.1.2.Final > Narayana 5.3.5 > Not in an application server - running standalone spring app > Reporter: davidkarlsen > Assignee: Tom Jenkinson > > With the same libraries as above, except narayana 5.3.5 the following config worked just fine: > {noformat} > > > > > > > > > > > > > > > org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory > ${hibernate.cache.use_query_cache} > ${hibernate.cache.use_second_level_cache} > ${hibernate.generate_statistics} > ${hibernate.cache.use_structured_entries} > ${hibernate.transaction.jta.platform:org.hibernate.engine.transaction.jta.platform.internal.JBossStandAloneJtaPlatform} > > ${hibernate.connection.release_mode:AFTER_STATEMENT} > ${hibernate.jdbc.use_get_generated_keys} > ${hibernate.jdbc.fetch_size} > ${hibernate.jdbc.batch_size} > ${hibernate.showSql} > ${hibernate.format_sql} > ${hibernate.use_sql_comments} > > > > {noformat} > If I upgrade Narayana to 5.3.5 I consistently get: > {noformat} > java.sql.SQLSyntaxErrorException: ORA-02049: timeout: distributed transaction waiting for lock > at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:450) > at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:399) > at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1059) > at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:522) > at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:257) > at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:587) > at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:210) > at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:30) > at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:931) > at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1150) > at oracle.jdbc.driver.OracleStatement.executeInternal(OracleStatement.java:1792) > at oracle.jdbc.driver.OracleStatement.execute(OracleStatement.java:1745) > at oracle.jdbc.driver.OracleStatementWrapper.execute(OracleStatementWrapper.java:334) > at sun.reflect.GeneratedMethodAccessor84.invoke(Unknown Source) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:498) > at net.bull.javamelody.JdbcWrapper.doExecute(JdbcWrapper.java:404) > at net.bull.javamelody.JdbcWrapper$StatementInvocationHandler.invoke(JdbcWrapper.java:129) > at net.bull.javamelody.JdbcWrapper$DelegatingInvocationHandler.invoke(JdbcWrapper.java:286) > at com.sun.proxy.$Proxy143.execute(Unknown Source) > at org.dbunit.database.statement.SimpleStatement.executeBatch(SimpleStatement.java:69) > at org.dbunit.operation.DeleteAllOperation.execute(DeleteAllOperation.java:126) > at org.dbunit.operation.CompositeOperation.execute(CompositeOperation.java:79) > at com.github.springtestdbunit.DbUnitRunner.setupOrTeardown(DbUnitRunner.java:183) > at com.github.springtestdbunit.DbUnitRunner.beforeTestMethod(DbUnitRunner.java:75) > at com.github.springtestdbunit.DbUnitTestExecutionListener.beforeTestMethod(DbUnitTestExecutionListener.java:185) > at org.springframework.test.context.TestContextManager.beforeTestMethod(TestContextManager.java:269) > at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) > at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86) > at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55) > at org.junit.rules.RunRules.evaluate(RunRules.java:20) > at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:252) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) > at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) > at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) > at org.junit.runners.ParentRunner.run(ParentRunner.java:363) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:367) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:274) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:161) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:290) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:242) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter. > {noformat} > If I leave hibernate.connection.release_mode to default (e.g. not specifying it) or after_transaction I get: > {noformat} > WARN com.arjuna.ats.jta - ARJUNA016029: SynchronizationImple.afterCompletion - failed for org.hibernate.resource.transaction.backend.jta.internal.synchronization.RegisteredSynchronization at 6811fa19 with exception > 22:59:01 java.lang.NullPointerException: null > 22:59:01 at com.arjuna.ats.internal.jdbc.ConnectionImple.getConnection(ConnectionImple.java:864) > 22:59:01 at com.arjuna.ats.internal.jdbc.ConnectionImple.getWarnings(ConnectionImple.java:476) > 22:59:01 at sun.reflect.GeneratedMethodAccessor113.invoke(Unknown Source) > 22:59:01 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > 22:59:01 at java.lang.reflect.Method.invoke(Method.java:498) > 22:59:01 at net.bull.javamelody.JdbcWrapper$ConnectionInvocationHandler.invoke(JdbcWrapper.java:189) > 22:59:01 at net.bull.javamelody.JdbcWrapper$DelegatingInvocationHandler.invoke(JdbcWrapper.java:286) > 22:59:01 at com.sun.proxy.$Proxy116.getWarnings(Unknown Source) > 22:59:01 at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.handleAndClearWarnings(SqlExceptionHelper.java:277) > 22:59:01 at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.logAndClearWarnings(SqlExceptionHelper.java:256) > 22:59:01 at org.hibernate.resource.jdbc.internal.LogicalConnectionManagedImpl.releaseConnection(LogicalConnectionManagedImpl.java:167) > 22:59:01 at org.hibernate.resource.jdbc.internal.LogicalConnectionManagedImpl.afterTransaction(LogicalConnectionManagedImpl.java:135) > 22:59:01 at org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl.afterTransaction(JdbcCoordinatorImpl.java:296) > 22:59:01 at org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl.afterTransactionCompletion(JdbcCoordinatorImpl.java:496) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.JtaTransactionCoordinatorImpl.afterCompletion(JtaTransactionCoordinatorImpl.java:345) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.SynchronizationCallbackCoordinatorNonTrackingImpl.doAfterCompletion(SynchronizationCallbackCoordinatorNonTrackingImpl.java:60) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.SynchronizationCallbackCoordinatorTrackingImpl.afterCompletion(SynchronizationCallbackCoordinatorTrackingImpl.java:72) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.RegisteredSynchronization.afterCompletion(RegisteredSynchronization.java:44) > 22:59:01 at com.arjuna.ats.internal.jta.resources.arjunacore.SynchronizationImple.afterCompletion(SynchronizationImple.java:96) > 22:59:01 at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.afterCompletion(TwoPhaseCoordinator.java:542) > 22:59:01 at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.end(TwoPhaseCoordinator.java:101) > 22:59:01 at com.arjuna.ats.arjuna.AtomicAction.commit(AtomicAction.java:162) > 22:59:01 at com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionImple.commitAndDisassociate(TransactionImple.java:1216) > 22:59:01 at com.arjuna.ats.internal.jta.transaction.arjunacore.BaseTransaction.commit(BaseTransaction.java:126) > 22:59:01 at org.springframework.transaction.jta.JtaTransactionManager.doCommit(JtaTransactionManager.java:1023) > 22:59:01 at org.springframework.transaction.support.AbstractPlatformTransactionManager.processCommit(AbstractPlatformTransactionManager.java:761) > 22:59:01 at org.springframework.transaction.support.AbstractPlatformTransactionManager.commit(AbstractPlatformTransactionManager.java:730) > 22:59:01 at org.springframework.transaction.interceptor.TransactionAspectSupport.commitTransactionAfterReturning(TransactionAspectSupport.java:487) > 22:59:01 at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:291) > 22:59:01 at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96) > 22:59:01 at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) > 22:59:01 at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92) > 22:59:01 at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) > 22:59:01 at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:213) > 22:59:01 at com.sun.proxy.$Proxy292.create(Unknown Source) > 22:59:01 at > {noformat} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 06:08:01 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 06:08:01 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2763) problem running with hibernate In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2763?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13319418#comment-13319418 ] Tom Jenkinson commented on JBTM-2763: ------------------------------------- Please can you try the linked PR and see if it fixes your issue? If not please can you create a simple test case showing the issue? > problem running with hibernate > ------------------------------ > > Key: JBTM-2763 > URL: https://issues.jboss.org/browse/JBTM-2763 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JTA > Affects Versions: 5.3.5.Final > Environment: Spring 4.3.3.RELEASE > Hibernate 5.1.2.Final > Narayana 5.3.5 > Not in an application server - running standalone spring app > Reporter: davidkarlsen > Assignee: Tom Jenkinson > > With the same libraries as above, except narayana 5.3.5 the following config worked just fine: > {noformat} > > > > > > > > > > > > > > > org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory > ${hibernate.cache.use_query_cache} > ${hibernate.cache.use_second_level_cache} > ${hibernate.generate_statistics} > ${hibernate.cache.use_structured_entries} > ${hibernate.transaction.jta.platform:org.hibernate.engine.transaction.jta.platform.internal.JBossStandAloneJtaPlatform} > > ${hibernate.connection.release_mode:AFTER_STATEMENT} > ${hibernate.jdbc.use_get_generated_keys} > ${hibernate.jdbc.fetch_size} > ${hibernate.jdbc.batch_size} > ${hibernate.showSql} > ${hibernate.format_sql} > ${hibernate.use_sql_comments} > > > > {noformat} > If I upgrade Narayana to 5.3.5 I consistently get: > {noformat} > java.sql.SQLSyntaxErrorException: ORA-02049: timeout: distributed transaction waiting for lock > at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:450) > at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:399) > at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1059) > at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:522) > at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:257) > at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:587) > at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:210) > at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:30) > at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:931) > at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1150) > at oracle.jdbc.driver.OracleStatement.executeInternal(OracleStatement.java:1792) > at oracle.jdbc.driver.OracleStatement.execute(OracleStatement.java:1745) > at oracle.jdbc.driver.OracleStatementWrapper.execute(OracleStatementWrapper.java:334) > at sun.reflect.GeneratedMethodAccessor84.invoke(Unknown Source) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:498) > at net.bull.javamelody.JdbcWrapper.doExecute(JdbcWrapper.java:404) > at net.bull.javamelody.JdbcWrapper$StatementInvocationHandler.invoke(JdbcWrapper.java:129) > at net.bull.javamelody.JdbcWrapper$DelegatingInvocationHandler.invoke(JdbcWrapper.java:286) > at com.sun.proxy.$Proxy143.execute(Unknown Source) > at org.dbunit.database.statement.SimpleStatement.executeBatch(SimpleStatement.java:69) > at org.dbunit.operation.DeleteAllOperation.execute(DeleteAllOperation.java:126) > at org.dbunit.operation.CompositeOperation.execute(CompositeOperation.java:79) > at com.github.springtestdbunit.DbUnitRunner.setupOrTeardown(DbUnitRunner.java:183) > at com.github.springtestdbunit.DbUnitRunner.beforeTestMethod(DbUnitRunner.java:75) > at com.github.springtestdbunit.DbUnitTestExecutionListener.beforeTestMethod(DbUnitTestExecutionListener.java:185) > at org.springframework.test.context.TestContextManager.beforeTestMethod(TestContextManager.java:269) > at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) > at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86) > at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55) > at org.junit.rules.RunRules.evaluate(RunRules.java:20) > at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:252) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) > at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) > at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) > at org.junit.runners.ParentRunner.run(ParentRunner.java:363) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:367) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:274) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:161) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:290) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:242) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter. > {noformat} > If I leave hibernate.connection.release_mode to default (e.g. not specifying it) or after_transaction I get: > {noformat} > WARN com.arjuna.ats.jta - ARJUNA016029: SynchronizationImple.afterCompletion - failed for org.hibernate.resource.transaction.backend.jta.internal.synchronization.RegisteredSynchronization at 6811fa19 with exception > 22:59:01 java.lang.NullPointerException: null > 22:59:01 at com.arjuna.ats.internal.jdbc.ConnectionImple.getConnection(ConnectionImple.java:864) > 22:59:01 at com.arjuna.ats.internal.jdbc.ConnectionImple.getWarnings(ConnectionImple.java:476) > 22:59:01 at sun.reflect.GeneratedMethodAccessor113.invoke(Unknown Source) > 22:59:01 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > 22:59:01 at java.lang.reflect.Method.invoke(Method.java:498) > 22:59:01 at net.bull.javamelody.JdbcWrapper$ConnectionInvocationHandler.invoke(JdbcWrapper.java:189) > 22:59:01 at net.bull.javamelody.JdbcWrapper$DelegatingInvocationHandler.invoke(JdbcWrapper.java:286) > 22:59:01 at com.sun.proxy.$Proxy116.getWarnings(Unknown Source) > 22:59:01 at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.handleAndClearWarnings(SqlExceptionHelper.java:277) > 22:59:01 at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.logAndClearWarnings(SqlExceptionHelper.java:256) > 22:59:01 at org.hibernate.resource.jdbc.internal.LogicalConnectionManagedImpl.releaseConnection(LogicalConnectionManagedImpl.java:167) > 22:59:01 at org.hibernate.resource.jdbc.internal.LogicalConnectionManagedImpl.afterTransaction(LogicalConnectionManagedImpl.java:135) > 22:59:01 at org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl.afterTransaction(JdbcCoordinatorImpl.java:296) > 22:59:01 at org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl.afterTransactionCompletion(JdbcCoordinatorImpl.java:496) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.JtaTransactionCoordinatorImpl.afterCompletion(JtaTransactionCoordinatorImpl.java:345) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.SynchronizationCallbackCoordinatorNonTrackingImpl.doAfterCompletion(SynchronizationCallbackCoordinatorNonTrackingImpl.java:60) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.SynchronizationCallbackCoordinatorTrackingImpl.afterCompletion(SynchronizationCallbackCoordinatorTrackingImpl.java:72) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.RegisteredSynchronization.afterCompletion(RegisteredSynchronization.java:44) > 22:59:01 at com.arjuna.ats.internal.jta.resources.arjunacore.SynchronizationImple.afterCompletion(SynchronizationImple.java:96) > 22:59:01 at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.afterCompletion(TwoPhaseCoordinator.java:542) > 22:59:01 at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.end(TwoPhaseCoordinator.java:101) > 22:59:01 at com.arjuna.ats.arjuna.AtomicAction.commit(AtomicAction.java:162) > 22:59:01 at com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionImple.commitAndDisassociate(TransactionImple.java:1216) > 22:59:01 at com.arjuna.ats.internal.jta.transaction.arjunacore.BaseTransaction.commit(BaseTransaction.java:126) > 22:59:01 at org.springframework.transaction.jta.JtaTransactionManager.doCommit(JtaTransactionManager.java:1023) > 22:59:01 at org.springframework.transaction.support.AbstractPlatformTransactionManager.processCommit(AbstractPlatformTransactionManager.java:761) > 22:59:01 at org.springframework.transaction.support.AbstractPlatformTransactionManager.commit(AbstractPlatformTransactionManager.java:730) > 22:59:01 at org.springframework.transaction.interceptor.TransactionAspectSupport.commitTransactionAfterReturning(TransactionAspectSupport.java:487) > 22:59:01 at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:291) > 22:59:01 at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96) > 22:59:01 at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) > 22:59:01 at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92) > 22:59:01 at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) > 22:59:01 at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:213) > 22:59:01 at com.sun.proxy.$Proxy292.create(Unknown Source) > 22:59:01 at > {noformat} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:06:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:06:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2769) CMR resource calls xa_forget on local resources In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2769?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson reassigned JBTM-2769: ----------------------------------- Assignee: Tom Jenkinson (was: Michael Musgrove) > CMR resource calls xa_forget on local resources > ----------------------------------------------- > > Key: JBTM-2769 > URL: https://issues.jboss.org/browse/JBTM-2769 > Project: JBoss Transaction Manager > Issue Type: Bug > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Blocker > Fix For: 5.next > > > {code} > 2016-10-06 17:50:17,105 WARN [com.arjuna.ats.arjuna] (Periodic Recovery) ARJUNA012290: failed to recover Transaction 0:ffff7f000001:6351fff9:57f67185:2a: java.lang.NullPointerException > at com.arjuna.ats.internal.jta.resources.arjunacore.CommitMarkableResourceRecord.forgetHeuristic(CommitMarkableResourceRecord.java:544) > at com.arjuna.ats.arjuna.coordinator.BasicAction.doForget(BasicAction.java:3603) > at com.arjuna.ats.arjuna.coordinator.BasicAction.forgetHeuristics(BasicAction.java:1347) > at com.arjuna.ats.arjuna.coordinator.BasicAction.phase2Abort(BasicAction.java:1991) > at com.arjuna.ats.arjuna.coordinator.BasicAction.doCommit(BasicAction.java:2852) > at com.arjuna.ats.arjuna.coordinator.BasicAction.phase2Commit(BasicAction.java:1871) > at com.arjuna.ats.arjuna.recovery.RecoverAtomicAction.replayPhase2(RecoverAtomicAction.java:71) > at com.arjuna.ats.internal.arjuna.recovery.AtomicActionRecoveryModule.doRecoverTransaction(AtomicActionRecoveryModule.java:152) > at com.arjuna.ats.internal.arjuna.recovery.AtomicActionRecoveryModule.processTransactionsStatus(AtomicActionRecoveryModule.java:253) > at com.arjuna.ats.internal.arjuna.recovery.AtomicActionRecoveryModule.periodicWorkSecondPass(AtomicActionRecoveryModule.java:109) > at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.doWorkInternal(PeriodicRecovery.java:811) > at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.run(PeriodicRecovery.java:377) > {code} > A local resource will have no concept of the forget and indeed the app server has an implementation that throws an exception if you call it. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:06:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:06:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2767) Allow JTS JCA imported transactions to have clearHeuristic called on their participants In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2767?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2767: -------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > Allow JTS JCA imported transactions to have clearHeuristic called on their participants > --------------------------------------------------------------------------------------- > > Key: JBTM-2767 > URL: https://issues.jboss.org/browse/JBTM-2767 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JCA, JTS > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Minor > Fix For: 5.next > > > If an XAResource throws a heuristic we can't forget it but we do clean up some transactional state meaning it will need reloading from disk (after the heuristic is cleared) before it can be meaningfully used again. In the state where it can't be meaningfully used we need to provide something to the caller. > [1] > {code} > 2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) java.lang.NullPointerException2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1)? > at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.SubordinateAtomicTransaction.getXid(SubordinateAtomicTransaction.java:80)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.TransactionImple.baseXid(TransactionImple.java:126)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1)? at com.arjuna.ats.internal.jta.transaction.jts.jca.TransactionImporterImple.getImportedTransaction(TransactionImporterImple.java:135)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at com.arjuna.ats.internal.jta.transaction.jts.jca.XATerminatorImple.commit(XATerminatorImple.java:83)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit.run(Unknown Source)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.jca.core.workmanager.WorkWrapper.run(WorkWrapper.java:223)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.SimpleDirectExecutor.execute(SimpleDirectExecutor.java:33)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor.runTask(QueueExecutor.java:808)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor.access$100(QueueExecutor.java:45)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor$Worker.run(QueueExecutor.java:828)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at java.lang.Thread.run(Thread.java:745)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.JBossThread.run(JBossThread.java:320) > 2016-10-05 16:19:23,538 ERROR [org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit] (default-threads - 1) Unspecified sever exception: java.lang.NullPointerException?at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.TransactionImple.recover(TransactionImple.java:135) > ?at com.arjuna.ats.internal.jta.transaction.jts.jca.TransactionImporterImple.getImportedTransaction(TransactionImporterImple.java:141) > ?at com.arjuna.ats.internal.jta.transaction.jts.jca.XATerminatorImple.commit(XATerminatorImple.java:83)?at org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit.run(Unknown Source)?at org.jboss.jca.core.workmanager.WorkWrapper.run(WorkWrapper.java:223) > ?at org.jboss.threads.SimpleDirectExecutor.execute(SimpleDirectExecutor.java:33)?at org.jboss.threads.QueueExecutor.runTask(QueueExecutor.java:808) > ?at org.jboss.threads.QueueExecutor.access$100(QueueExecutor.java:45) > ?at org.jboss.threads.QueueExecutor$Worker.run(QueueExecutor.java:828) > ?at java.lang.Thread.run(Thread.java:745) > ?at org.jboss.threads.JBossThread.run(JBossThread.java:320) > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:07:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:07:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2770) Xids that relate to an CMR that has been recovered are rolledback even if the CMR committed In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2770?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2770: -------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > Xids that relate to an CMR that has been recovered are rolledback even if the CMR committed > ------------------------------------------------------------------------------------------- > > Key: JBTM-2770 > URL: https://issues.jboss.org/browse/JBTM-2770 > Project: JBoss Transaction Manager > Issue Type: Bug > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Blocker > Fix For: 5.next > > > During recovery the CMR orphan detection checks to make sure that there is not an indoubt transaction that pertains to the CMR before deciding if an Xid is an orphan. Actually the check should also see if the transaction committed. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:07:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:07:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2769) CMR resource calls xa_forget on local resources In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2769?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2769: -------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > CMR resource calls xa_forget on local resources > ----------------------------------------------- > > Key: JBTM-2769 > URL: https://issues.jboss.org/browse/JBTM-2769 > Project: JBoss Transaction Manager > Issue Type: Bug > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Blocker > Fix For: 5.next > > > {code} > 2016-10-06 17:50:17,105 WARN [com.arjuna.ats.arjuna] (Periodic Recovery) ARJUNA012290: failed to recover Transaction 0:ffff7f000001:6351fff9:57f67185:2a: java.lang.NullPointerException > at com.arjuna.ats.internal.jta.resources.arjunacore.CommitMarkableResourceRecord.forgetHeuristic(CommitMarkableResourceRecord.java:544) > at com.arjuna.ats.arjuna.coordinator.BasicAction.doForget(BasicAction.java:3603) > at com.arjuna.ats.arjuna.coordinator.BasicAction.forgetHeuristics(BasicAction.java:1347) > at com.arjuna.ats.arjuna.coordinator.BasicAction.phase2Abort(BasicAction.java:1991) > at com.arjuna.ats.arjuna.coordinator.BasicAction.doCommit(BasicAction.java:2852) > at com.arjuna.ats.arjuna.coordinator.BasicAction.phase2Commit(BasicAction.java:1871) > at com.arjuna.ats.arjuna.recovery.RecoverAtomicAction.replayPhase2(RecoverAtomicAction.java:71) > at com.arjuna.ats.internal.arjuna.recovery.AtomicActionRecoveryModule.doRecoverTransaction(AtomicActionRecoveryModule.java:152) > at com.arjuna.ats.internal.arjuna.recovery.AtomicActionRecoveryModule.processTransactionsStatus(AtomicActionRecoveryModule.java:253) > at com.arjuna.ats.internal.arjuna.recovery.AtomicActionRecoveryModule.periodicWorkSecondPass(AtomicActionRecoveryModule.java:109) > at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.doWorkInternal(PeriodicRecovery.java:811) > at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.run(PeriodicRecovery.java:377) > {code} > A local resource will have no concept of the forget and indeed the app server has an implementation that throws an exception if you call it. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:08:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:08:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2786) MySQL JDBCStore occasionally gets deadlock exception In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2786?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2786: -------------------------------- Status: Pull Request Sent (was: Open) Git Pull Request: https://github.com/jbosstm/narayana/pull/1087 > MySQL JDBCStore occasionally gets deadlock exception > ---------------------------------------------------- > > Key: JBTM-2786 > URL: https://issues.jboss.org/browse/JBTM-2786 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Transaction Core > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > Occasionally in QA tests we see the MySQL CI job fail with messages about deadlocks. > From what I can see from http://stackoverflow.com/questions/2332768/how-to-avoid-mysql-deadlock-found-when-trying-to-get-lock-try-restarting-trans it can be because the where clauses are not ordered the same so a table lock can happen. Reordering the where clauses would hopefully fix this. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:14:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:14:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2783) Add suspend and resume methods to RecoveryManagerService application server integration code In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2783?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2783: -------------------------------- Issue Type: Enhancement (was: Feature Request) > Add suspend and resume methods to RecoveryManagerService application server integration code > -------------------------------------------------------------------------------------------- > > Key: JBTM-2783 > URL: https://issues.jboss.org/browse/JBTM-2783 > Project: JBoss Transaction Manager > Issue Type: Enhancement > Components: Application Server Integration > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Fix For: 5.next > > > Recovery manager service in WildFly needs to be able to suspend and resume recovery manager service. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:14:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:14:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2761) Add the nexus repository to the OSGi quickstart In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2761?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2761: -------------------------------- Issue Type: Enhancement (was: Feature Request) > Add the nexus repository to the OSGi quickstart > ----------------------------------------------- > > Key: JBTM-2761 > URL: https://issues.jboss.org/browse/JBTM-2761 > Project: JBoss Transaction Manager > Issue Type: Enhancement > Components: Documentation > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > Can't be found by the CI system until it flushes to maven central -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:18:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:18:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2771) JTS XAResources that throw XA_RETRY or XAER_RMFAIL cannot be retried In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2771?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2771: -------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > JTS XAResources that throw XA_RETRY or XAER_RMFAIL cannot be retried > -------------------------------------------------------------------- > > Key: JBTM-2771 > URL: https://issues.jboss.org/browse/JBTM-2771 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JTS > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Blocker > Fix For: 5.next > > Attachments: JMSProxyMessagingServerCrashRecoveryTestCase_prepareHalt_jts_server.log > > > There is a flag that is persisted _committed which defines if a commit was attempted on an XAResource. In the case where the XAR returned XARETRY for example, we would have consulted that flag and not reattempted the commit. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:18:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:18:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2771) JTS XAResources that throw XA_RETRY or XAER_RMFAIL cannot be retried In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2771?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2771: -------------------------------- Fix Version/s: 5.next > JTS XAResources that throw XA_RETRY or XAER_RMFAIL cannot be retried > -------------------------------------------------------------------- > > Key: JBTM-2771 > URL: https://issues.jboss.org/browse/JBTM-2771 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JTS > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Blocker > Fix For: 5.next > > Attachments: JMSProxyMessagingServerCrashRecoveryTestCase_prepareHalt_jts_server.log > > > There is a flag that is persisted _committed which defines if a commit was attempted on an XAResource. In the case where the XAR returned XARETRY for example, we would have consulted that flag and not reattempted the commit. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:19:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:19:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2739) Add a CI job for testing jboss-transaction-spi In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2739?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2739: -------------------------------- Fix Version/s: 5.next > Add a CI job for testing jboss-transaction-spi > ---------------------------------------------- > > Key: JBTM-2739 > URL: https://issues.jboss.org/browse/JBTM-2739 > Project: JBoss Transaction Manager > Issue Type: Task > Components: SPI > Affects Versions: 5.3.4.Final > Reporter: Michael Musgrove > Assignee: Michael Musgrove > Fix For: 5.next > > > We need a CI job to test that narayana works with the latest jboss-transaction-spi and this should include PRs as well as master. > In addition, the two projects duplicate tests so the the duplicates need removing from narayana (but only after we have added this CI testing). > Note that jboss-transaction-spi has a test dependency on the last released stable version of narayana so that dependency would need to changed to the version of our current SNAPSHOT for these new proposed CI jobs to be useful. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:19:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:19:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2739) Add a CI job for testing jboss-transaction-spi In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2739?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson resolved JBTM-2739. --------------------------------- Resolution: Done > Add a CI job for testing jboss-transaction-spi > ---------------------------------------------- > > Key: JBTM-2739 > URL: https://issues.jboss.org/browse/JBTM-2739 > Project: JBoss Transaction Manager > Issue Type: Task > Components: SPI > Affects Versions: 5.3.4.Final > Reporter: Michael Musgrove > Assignee: Michael Musgrove > Fix For: 5.next > > > We need a CI job to test that narayana works with the latest jboss-transaction-spi and this should include PRs as well as master. > In addition, the two projects duplicate tests so the the duplicates need removing from narayana (but only after we have added this CI testing). > Note that jboss-transaction-spi has a test dependency on the last released stable version of narayana so that dependency would need to changed to the version of our current SNAPSHOT for these new proposed CI jobs to be useful. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:20:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:20:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2789) Replace deprecated resteasy classes In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2789?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson closed JBTM-2789. ------------------------------- > Replace deprecated resteasy classes > ----------------------------------- > > Key: JBTM-2789 > URL: https://issues.jboss.org/browse/JBTM-2789 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: Demonstrator > Affects Versions: 5.3.5.Final > Reporter: Michael Musgrove > Assignee: Michael Musgrove > Fix For: 5.4.0.Final > > > Replace resteasy classes with the jaxrs 2 equivalents in the jpa quickstart: > http://narayanaci1.eng.hst.ams2.redhat.com/job/narayana-quickstarts-ipv6/4/consoleFull -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:20:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:20:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2779) Add licence file to missing quickstarts In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson closed JBTM-2779. ------------------------------- > Add licence file to missing quickstarts > --------------------------------------- > > Key: JBTM-2779 > URL: https://issues.jboss.org/browse/JBTM-2779 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Demonstrator > Reporter: Tom Jenkinson > Assignee: Amos Feng > Fix For: 5.4.0.Final > > > There are a lot of quickstarts that do not have the expected licence declarations at the top of their files. > You can find these: > find . -type f | grep -v git | grep -v jar | grep -v tools | xargs grep -H -c 'Lesser\|LICENSE-2' | grep 0$ | cut -d':' -f1 | wc > The correct licence should be added to them, you may find it easy to cat a licence file (in the correct .java, .xml, .sh, .bat format) to them. > The licence is LGPL. Those that were originally ASL etc should remain that way. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:20:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:20:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2775) Upgrade byteman to 4.0.0-BETA0 to support the JDK 9 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2775?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson closed JBTM-2775. ------------------------------- > Upgrade byteman to 4.0.0-BETA0 to support the JDK 9 > --------------------------------------------------- > > Key: JBTM-2775 > URL: https://issues.jboss.org/browse/JBTM-2775 > Project: JBoss Transaction Manager > Issue Type: Task > Reporter: Amos Feng > Assignee: Amos Feng > Fix For: 5.4.0.Final > > > This is a preview release allowing Byteman to be used with a JDK9 that includes the Java Platform Module System. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:20:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:20:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2778) Upgrade arquillian-container-karaf to 2.2.0.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2778?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson closed JBTM-2778. ------------------------------- > Upgrade arquillian-container-karaf to 2.2.0.Final > -------------------------------------------------- > > Key: JBTM-2778 > URL: https://issues.jboss.org/browse/JBTM-2778 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Application Server Integration, Build System > Reporter: Amos Feng > Assignee: Tom Jenkinson > Fix For: 5.4.0.Final > > > The arquillian-container-karaf had release the 2.2.0.Final and it does not need to build the SNAPSHOT in the hudson/script/narayana.sh -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:20:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:20:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2783) Add suspend and resume methods to RecoveryManagerService application server integration code In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2783?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson closed JBTM-2783. ------------------------------- > Add suspend and resume methods to RecoveryManagerService application server integration code > -------------------------------------------------------------------------------------------- > > Key: JBTM-2783 > URL: https://issues.jboss.org/browse/JBTM-2783 > Project: JBoss Transaction Manager > Issue Type: Enhancement > Components: Application Server Integration > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Fix For: 5.4.0.Final > > > Recovery manager service in WildFly needs to be able to suspend and resume recovery manager service. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:21:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:21:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2771) JTS XAResources that throw XA_RETRY or XAER_RMFAIL cannot be retried In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2771?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson closed JBTM-2771. ------------------------------- > JTS XAResources that throw XA_RETRY or XAER_RMFAIL cannot be retried > -------------------------------------------------------------------- > > Key: JBTM-2771 > URL: https://issues.jboss.org/browse/JBTM-2771 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JTS > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Blocker > Fix For: 5.4.0.Final > > Attachments: JMSProxyMessagingServerCrashRecoveryTestCase_prepareHalt_jts_server.log > > > There is a flag that is persisted _committed which defines if a commit was attempted on an XAResource. In the case where the XAR returned XARETRY for example, we would have consulted that flag and not reattempted the commit. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:21:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:21:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2774) Leak when imported subordinate transactions are rolled back by reaper before remote reaper In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2774?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson closed JBTM-2774. ------------------------------- > Leak when imported subordinate transactions are rolled back by reaper before remote reaper > ------------------------------------------------------------------------------------------ > > Key: JBTM-2774 > URL: https://issues.jboss.org/browse/JBTM-2774 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: Application Server Integration > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Priority: Critical > Fix For: 4.17.38, 5.2.20.Final, 5.4.0.Final > > > When using the EJB remoting transport that layers over the top of JCA it is possible for a race condition between the two reapers. > Normally you have server 1 and server 2. Each of these insert the TwoPhaseCoordinator in their TransactionReaper. If the TransactionReaper in server 2 fires first then it will rollback the TPC. > When server 1 Reaper EJB remoting transport fires it will try to rollback at server 2 also and it is this that should be safe to remove the transactionImple reference. > At the time of reporting the reference is not removed though and so the reference to the TransactionImple is not removed. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:21:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:21:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2770) Xids that relate to an CMR that has been recovered are rolledback even if the CMR committed In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2770?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson closed JBTM-2770. ------------------------------- > Xids that relate to an CMR that has been recovered are rolledback even if the CMR committed > ------------------------------------------------------------------------------------------- > > Key: JBTM-2770 > URL: https://issues.jboss.org/browse/JBTM-2770 > Project: JBoss Transaction Manager > Issue Type: Bug > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Blocker > Fix For: 5.4.0.Final > > > During recovery the CMR orphan detection checks to make sure that there is not an indoubt transaction that pertains to the CMR before deciding if an Xid is an orphan. Actually the check should also see if the transaction committed. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:21:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:21:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2769) CMR resource calls xa_forget on local resources In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2769?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson closed JBTM-2769. ------------------------------- > CMR resource calls xa_forget on local resources > ----------------------------------------------- > > Key: JBTM-2769 > URL: https://issues.jboss.org/browse/JBTM-2769 > Project: JBoss Transaction Manager > Issue Type: Bug > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Blocker > Fix For: 5.4.0.Final > > > {code} > 2016-10-06 17:50:17,105 WARN [com.arjuna.ats.arjuna] (Periodic Recovery) ARJUNA012290: failed to recover Transaction 0:ffff7f000001:6351fff9:57f67185:2a: java.lang.NullPointerException > at com.arjuna.ats.internal.jta.resources.arjunacore.CommitMarkableResourceRecord.forgetHeuristic(CommitMarkableResourceRecord.java:544) > at com.arjuna.ats.arjuna.coordinator.BasicAction.doForget(BasicAction.java:3603) > at com.arjuna.ats.arjuna.coordinator.BasicAction.forgetHeuristics(BasicAction.java:1347) > at com.arjuna.ats.arjuna.coordinator.BasicAction.phase2Abort(BasicAction.java:1991) > at com.arjuna.ats.arjuna.coordinator.BasicAction.doCommit(BasicAction.java:2852) > at com.arjuna.ats.arjuna.coordinator.BasicAction.phase2Commit(BasicAction.java:1871) > at com.arjuna.ats.arjuna.recovery.RecoverAtomicAction.replayPhase2(RecoverAtomicAction.java:71) > at com.arjuna.ats.internal.arjuna.recovery.AtomicActionRecoveryModule.doRecoverTransaction(AtomicActionRecoveryModule.java:152) > at com.arjuna.ats.internal.arjuna.recovery.AtomicActionRecoveryModule.processTransactionsStatus(AtomicActionRecoveryModule.java:253) > at com.arjuna.ats.internal.arjuna.recovery.AtomicActionRecoveryModule.periodicWorkSecondPass(AtomicActionRecoveryModule.java:109) > at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.doWorkInternal(PeriodicRecovery.java:811) > at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.run(PeriodicRecovery.java:377) > {code} > A local resource will have no concept of the forget and indeed the app server has an implementation that throws an exception if you call it. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:21:01 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:21:01 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2767) Allow JTS JCA imported transactions to have clearHeuristic called on their participants In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2767?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson closed JBTM-2767. ------------------------------- > Allow JTS JCA imported transactions to have clearHeuristic called on their participants > --------------------------------------------------------------------------------------- > > Key: JBTM-2767 > URL: https://issues.jboss.org/browse/JBTM-2767 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JCA, JTS > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Minor > Fix For: 5.4.0.Final > > > If an XAResource throws a heuristic we can't forget it but we do clean up some transactional state meaning it will need reloading from disk (after the heuristic is cleared) before it can be meaningfully used again. In the state where it can't be meaningfully used we need to provide something to the caller. > [1] > {code} > 2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) java.lang.NullPointerException2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1)? > at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.SubordinateAtomicTransaction.getXid(SubordinateAtomicTransaction.java:80)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.TransactionImple.baseXid(TransactionImple.java:126)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1)? at com.arjuna.ats.internal.jta.transaction.jts.jca.TransactionImporterImple.getImportedTransaction(TransactionImporterImple.java:135)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at com.arjuna.ats.internal.jta.transaction.jts.jca.XATerminatorImple.commit(XATerminatorImple.java:83)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit.run(Unknown Source)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.jca.core.workmanager.WorkWrapper.run(WorkWrapper.java:223)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.SimpleDirectExecutor.execute(SimpleDirectExecutor.java:33)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor.runTask(QueueExecutor.java:808)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor.access$100(QueueExecutor.java:45)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.QueueExecutor$Worker.run(QueueExecutor.java:828)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at java.lang.Thread.run(Thread.java:745)2016-10-05 16:19:23,537 ERROR [stderr] (default-threads - 1) > ? at org.jboss.threads.JBossThread.run(JBossThread.java:320) > 2016-10-05 16:19:23,538 ERROR [org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit] (default-threads - 1) Unspecified sever exception: java.lang.NullPointerException?at com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.TransactionImple.recover(TransactionImple.java:135) > ?at com.arjuna.ats.internal.jta.transaction.jts.jca.TransactionImporterImple.getImportedTransaction(TransactionImporterImple.java:141) > ?at com.arjuna.ats.internal.jta.transaction.jts.jca.XATerminatorImple.commit(XATerminatorImple.java:83)?at org.jboss.as.test.jbossts.crashrec.jca.rar.TestResourceTxnWorkUnit.run(Unknown Source)?at org.jboss.jca.core.workmanager.WorkWrapper.run(WorkWrapper.java:223) > ?at org.jboss.threads.SimpleDirectExecutor.execute(SimpleDirectExecutor.java:33)?at org.jboss.threads.QueueExecutor.runTask(QueueExecutor.java:808) > ?at org.jboss.threads.QueueExecutor.access$100(QueueExecutor.java:45) > ?at org.jboss.threads.QueueExecutor$Worker.run(QueueExecutor.java:828) > ?at java.lang.Thread.run(Thread.java:745) > ?at org.jboss.threads.JBossThread.run(JBossThread.java:320) > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:21:01 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:21:01 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2761) Add the nexus repository to the OSGi quickstart In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2761?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson closed JBTM-2761. ------------------------------- > Add the nexus repository to the OSGi quickstart > ----------------------------------------------- > > Key: JBTM-2761 > URL: https://issues.jboss.org/browse/JBTM-2761 > Project: JBoss Transaction Manager > Issue Type: Enhancement > Components: Documentation > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.4.0.Final > > > Can't be found by the CI system until it flushes to maven central -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:21:01 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:21:01 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2739) Add a CI job for testing jboss-transaction-spi In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2739?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson closed JBTM-2739. ------------------------------- > Add a CI job for testing jboss-transaction-spi > ---------------------------------------------- > > Key: JBTM-2739 > URL: https://issues.jboss.org/browse/JBTM-2739 > Project: JBoss Transaction Manager > Issue Type: Task > Components: SPI > Affects Versions: 5.3.4.Final > Reporter: Michael Musgrove > Assignee: Michael Musgrove > Fix For: 5.4.0.Final > > > We need a CI job to test that narayana works with the latest jboss-transaction-spi and this should include PRs as well as master. > In addition, the two projects duplicate tests so the the duplicates need removing from narayana (but only after we have added this CI testing). > Note that jboss-transaction-spi has a test dependency on the last released stable version of narayana so that dependency would need to changed to the version of our current SNAPSHOT for these new proposed CI jobs to be useful. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 9 09:21:01 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 9 Nov 2016 09:21:01 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2334) Improve ease of use within Tomcat In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2334?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson closed JBTM-2334. ------------------------------- > Improve ease of use within Tomcat > --------------------------------- > > Key: JBTM-2334 > URL: https://issues.jboss.org/browse/JBTM-2334 > Project: JBoss Transaction Manager > Issue Type: Feature Request > Components: JTA > Reporter: Mark Little > Assignee: Gytis Trikleris > Fix For: 5.4.0.Final > > > Initial requirements: > # Implement a Narayana Tomcat module which provides an archive with all dependencies necessary for deployment on Tomcat: common, core, jta, jdbc, cdi, spi, jms (optional) > # Implement Tomcat lifecycle listener to bootstrap TM and RM -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Thu Nov 10 22:07:00 2016 From: issues at jboss.org (Amos Feng (JIRA)) Date: Thu, 10 Nov 2016 22:07:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2790) Blacktie btadmin ResumeDomainTest failure In-Reply-To: References: Message-ID: Amos Feng created JBTM-2790: ------------------------------- Summary: Blacktie btadmin ResumeDomainTest failure Key: JBTM-2790 URL: https://issues.jboss.org/browse/JBTM-2790 Project: JBoss Transaction Manager Issue Type: Bug Components: BlackTie, Testing Reporter: Amos Feng Assignee: Amos Feng Priority: Minor It looks like the ResumeDomainTest.setUp() sends the "pauseDomain' command but can not receive the response from the jboss-as server. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 15 16:02:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 15 Nov 2016 16:02:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2673) ThreadUtil getThreadId(Thread) ignores argument In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2673?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2673: -------------------------------- Priority: Minor (was: Major) > ThreadUtil getThreadId(Thread) ignores argument > ----------------------------------------------- > > Key: JBTM-2673 > URL: https://issues.jboss.org/browse/JBTM-2673 > Project: JBoss Transaction Manager > Issue Type: Bug > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Priority: Minor > > During investigation of https://developer.jboss.org/thread/269784?start=15&tstart=0 it was observed that the ThreadUtil implementation does not use the Thread argument and simply uses a ThreadLocal: > https://github.com/jbosstm/narayana/blob/master/ArjunaCore/arjuna/classes/com/arjuna/ats/arjuna/utils/ThreadUtil.java#L51 -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 15 16:02:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 15 Nov 2016 16:02:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2673) ThreadUtil getThreadId(Thread) ignores argument In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2673?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2673: -------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > ThreadUtil getThreadId(Thread) ignores argument > ----------------------------------------------- > > Key: JBTM-2673 > URL: https://issues.jboss.org/browse/JBTM-2673 > Project: JBoss Transaction Manager > Issue Type: Bug > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Priority: Minor > > During investigation of https://developer.jboss.org/thread/269784?start=15&tstart=0 it was observed that the ThreadUtil implementation does not use the Thread argument and simply uses a ThreadLocal: > https://github.com/jbosstm/narayana/blob/master/ArjunaCore/arjuna/classes/com/arjuna/ats/arjuna/utils/ThreadUtil.java#L51 -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 16 06:50:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 16 Nov 2016 06:50:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2763) problem running with hibernate In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2763?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2763: -------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > problem running with hibernate > ------------------------------ > > Key: JBTM-2763 > URL: https://issues.jboss.org/browse/JBTM-2763 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JTA > Affects Versions: 5.3.5.Final > Environment: Spring 4.3.3.RELEASE > Hibernate 5.1.2.Final > Narayana 5.3.5 > Not in an application server - running standalone spring app > Reporter: davidkarlsen > Assignee: Tom Jenkinson > > With the same libraries as above, except narayana 5.3.5 the following config worked just fine: > {noformat} > > > > > > > > > > > > > > > org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory > ${hibernate.cache.use_query_cache} > ${hibernate.cache.use_second_level_cache} > ${hibernate.generate_statistics} > ${hibernate.cache.use_structured_entries} > ${hibernate.transaction.jta.platform:org.hibernate.engine.transaction.jta.platform.internal.JBossStandAloneJtaPlatform} > > ${hibernate.connection.release_mode:AFTER_STATEMENT} > ${hibernate.jdbc.use_get_generated_keys} > ${hibernate.jdbc.fetch_size} > ${hibernate.jdbc.batch_size} > ${hibernate.showSql} > ${hibernate.format_sql} > ${hibernate.use_sql_comments} > > > > {noformat} > If I upgrade Narayana to 5.3.5 I consistently get: > {noformat} > java.sql.SQLSyntaxErrorException: ORA-02049: timeout: distributed transaction waiting for lock > at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:450) > at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:399) > at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1059) > at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:522) > at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:257) > at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:587) > at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:210) > at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:30) > at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:931) > at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1150) > at oracle.jdbc.driver.OracleStatement.executeInternal(OracleStatement.java:1792) > at oracle.jdbc.driver.OracleStatement.execute(OracleStatement.java:1745) > at oracle.jdbc.driver.OracleStatementWrapper.execute(OracleStatementWrapper.java:334) > at sun.reflect.GeneratedMethodAccessor84.invoke(Unknown Source) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:498) > at net.bull.javamelody.JdbcWrapper.doExecute(JdbcWrapper.java:404) > at net.bull.javamelody.JdbcWrapper$StatementInvocationHandler.invoke(JdbcWrapper.java:129) > at net.bull.javamelody.JdbcWrapper$DelegatingInvocationHandler.invoke(JdbcWrapper.java:286) > at com.sun.proxy.$Proxy143.execute(Unknown Source) > at org.dbunit.database.statement.SimpleStatement.executeBatch(SimpleStatement.java:69) > at org.dbunit.operation.DeleteAllOperation.execute(DeleteAllOperation.java:126) > at org.dbunit.operation.CompositeOperation.execute(CompositeOperation.java:79) > at com.github.springtestdbunit.DbUnitRunner.setupOrTeardown(DbUnitRunner.java:183) > at com.github.springtestdbunit.DbUnitRunner.beforeTestMethod(DbUnitRunner.java:75) > at com.github.springtestdbunit.DbUnitTestExecutionListener.beforeTestMethod(DbUnitTestExecutionListener.java:185) > at org.springframework.test.context.TestContextManager.beforeTestMethod(TestContextManager.java:269) > at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) > at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86) > at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55) > at org.junit.rules.RunRules.evaluate(RunRules.java:20) > at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:252) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) > at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) > at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) > at org.junit.runners.ParentRunner.run(ParentRunner.java:363) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:367) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:274) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:161) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:290) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:242) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter. > {noformat} > If I leave hibernate.connection.release_mode to default (e.g. not specifying it) or after_transaction I get: > {noformat} > WARN com.arjuna.ats.jta - ARJUNA016029: SynchronizationImple.afterCompletion - failed for org.hibernate.resource.transaction.backend.jta.internal.synchronization.RegisteredSynchronization at 6811fa19 with exception > 22:59:01 java.lang.NullPointerException: null > 22:59:01 at com.arjuna.ats.internal.jdbc.ConnectionImple.getConnection(ConnectionImple.java:864) > 22:59:01 at com.arjuna.ats.internal.jdbc.ConnectionImple.getWarnings(ConnectionImple.java:476) > 22:59:01 at sun.reflect.GeneratedMethodAccessor113.invoke(Unknown Source) > 22:59:01 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > 22:59:01 at java.lang.reflect.Method.invoke(Method.java:498) > 22:59:01 at net.bull.javamelody.JdbcWrapper$ConnectionInvocationHandler.invoke(JdbcWrapper.java:189) > 22:59:01 at net.bull.javamelody.JdbcWrapper$DelegatingInvocationHandler.invoke(JdbcWrapper.java:286) > 22:59:01 at com.sun.proxy.$Proxy116.getWarnings(Unknown Source) > 22:59:01 at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.handleAndClearWarnings(SqlExceptionHelper.java:277) > 22:59:01 at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.logAndClearWarnings(SqlExceptionHelper.java:256) > 22:59:01 at org.hibernate.resource.jdbc.internal.LogicalConnectionManagedImpl.releaseConnection(LogicalConnectionManagedImpl.java:167) > 22:59:01 at org.hibernate.resource.jdbc.internal.LogicalConnectionManagedImpl.afterTransaction(LogicalConnectionManagedImpl.java:135) > 22:59:01 at org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl.afterTransaction(JdbcCoordinatorImpl.java:296) > 22:59:01 at org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl.afterTransactionCompletion(JdbcCoordinatorImpl.java:496) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.JtaTransactionCoordinatorImpl.afterCompletion(JtaTransactionCoordinatorImpl.java:345) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.SynchronizationCallbackCoordinatorNonTrackingImpl.doAfterCompletion(SynchronizationCallbackCoordinatorNonTrackingImpl.java:60) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.SynchronizationCallbackCoordinatorTrackingImpl.afterCompletion(SynchronizationCallbackCoordinatorTrackingImpl.java:72) > 22:59:01 at org.hibernate.resource.transaction.backend.jta.internal.synchronization.RegisteredSynchronization.afterCompletion(RegisteredSynchronization.java:44) > 22:59:01 at com.arjuna.ats.internal.jta.resources.arjunacore.SynchronizationImple.afterCompletion(SynchronizationImple.java:96) > 22:59:01 at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.afterCompletion(TwoPhaseCoordinator.java:542) > 22:59:01 at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.end(TwoPhaseCoordinator.java:101) > 22:59:01 at com.arjuna.ats.arjuna.AtomicAction.commit(AtomicAction.java:162) > 22:59:01 at com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionImple.commitAndDisassociate(TransactionImple.java:1216) > 22:59:01 at com.arjuna.ats.internal.jta.transaction.arjunacore.BaseTransaction.commit(BaseTransaction.java:126) > 22:59:01 at org.springframework.transaction.jta.JtaTransactionManager.doCommit(JtaTransactionManager.java:1023) > 22:59:01 at org.springframework.transaction.support.AbstractPlatformTransactionManager.processCommit(AbstractPlatformTransactionManager.java:761) > 22:59:01 at org.springframework.transaction.support.AbstractPlatformTransactionManager.commit(AbstractPlatformTransactionManager.java:730) > 22:59:01 at org.springframework.transaction.interceptor.TransactionAspectSupport.commitTransactionAfterReturning(TransactionAspectSupport.java:487) > 22:59:01 at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:291) > 22:59:01 at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96) > 22:59:01 at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) > 22:59:01 at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92) > 22:59:01 at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) > 22:59:01 at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:213) > 22:59:01 at com.sun.proxy.$Proxy292.create(Unknown Source) > 22:59:01 at > {noformat} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 16 09:48:00 2016 From: issues at jboss.org (Ondra Chaloupka (JIRA)) Date: Wed, 16 Nov 2016 09:48:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2791) JTS bottom-up could roll-back prepared inflowed JCA transactions In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2791?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ondra Chaloupka moved JBEAP-7356 to JBTM-2791: ---------------------------------------------- Project: JBoss Transaction Manager (was: JBoss Enterprise Application Platform) Key: JBTM-2791 (was: JBEAP-7356) Workflow: GIT Pull Request workflow (was: CDW with loose statuses v1) Component/s: JTS (was: Transactions) Affects Version/s: 5.3.5.Final (was: 7.1.0.DR8) > JTS bottom-up could roll-back prepared inflowed JCA transactions > ---------------------------------------------------------------- > > Key: JBTM-2791 > URL: https://issues.jboss.org/browse/JBTM-2791 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JTS > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Attachments: 5.3.3.Final-fail-jvmCrashAfterPrepareJTS_jts_server.log, 5.3.5.Final-fail-jvmCrashAfterPrepareJTS_jts_server.log, 5.3.5.Final-pass-jvmCrashAfterPrepareJTS_jts_server.log > > > I experience race condition in my testcase for JBTM-2748/JBEAP-5880. Even by "detailed" investigation on {{server.log}} I'm a bit lost in what can cause the problem. By my testing I can see that Narayana 5.3.3.Final fails my test anytime. Narayana 5.3.5.Final seems to pass in most of the cases but time to time fails. The result is the same as at 5.3.3.Final. Nevertheless I can see different behavior shown by {{server.log}}. > For Narayana 5.3.3.Final during the JTS recovery second phase TM gets txn status and decides to rollback [1]. > For Narayana 5.3.5.Final during the JTS recovery second phase if TM gets txn status it goes for commit but if there is some trouble to get it it rollbacks. The problem that I refer to is represented by error {{WARN? [com.arjuna.ats.jts] (Periodic Recovery) ARJUNA022139: CORBA exception on trying to contact original process: org.omg.CORBA.BAD_OPERATION}} [2]. > I'm adding three server logs as attachment - fail for 5.3.3.Final and two for 5.3.5.Final - one failing, one passing. > [1] > {code} > 2016-11-16 15:16:52,985 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecoveryHelper] (Periodic Recovery) returning 2 Xids > 2016-11-16 15:16:52,985 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecoveryHelper] (Periodic Recovery) returning xid: < 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 > > 2016-11-16 15:16:52,985 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecoveryHelper] (Periodic Recovery) returning xid: < 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 > > 2016-11-16 15:16:52,985 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) RecoveryXids isStale Check RecoveryOnlyEJBXAResource{receiverContext=EJBReceiverContext{clientContext=org.jboss.ejb.client.EJBClientContext at 31a25bc7, receiver=org.jboss.as.ejb3.remote.LocalEjbReceiver at 3f537a39}, transactionOriginNodeIdentifier='1'} 1479305802928 1479305812985 false > 2016-11-16 15:16:52,987 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) RecoveryXids isStale Check TestXAResourceRecovered(TestXAResourceCommon(id:512, xid:null, timeout:0, prepareReturn:0)) 1479305802969 1479305812985 false > 2016-11-16 15:16:52,987 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) RecoveryXids isStale Check org.jboss.activemq.artemis.wildfly.integration.WildFlyActiveMQXAResourceWrapper at 7a29e943 1479305802948 1479305812987 false > 2016-11-16 15:16:52,987 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) JTS XARecoveryModule.resourceInitiatedRecovery completed > 2016-11-16 15:16:52,987 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) XARecoveryModule state change SECOND_PASS->IDLE > 2016-11-16 15:16:52,987 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) > 2016-11-16 15:16:52,987 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) PeriodicRecovery: background thread Status <== INACTIVE > 2016-11-16 15:16:52,987 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) PeriodicRecovery: scan thread signals listener worker > 2016-11-16 15:16:52,987 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) PeriodicRecovery: background thread backing off > 2016-11-16 15:17:12,988 DEBUG [com.arjuna.ats.arjuna] (Listener:4712) Connected to 127.0.0.1 on port 50586 on listener port 4712 for service com.arjuna.ats.internal.arjuna.recovery.WorkerService > 2016-11-16 15:17:12,989 DEBUG [com.arjuna.ats.arjuna] (Server.Connection:127.0.0.1:50586) PeriodicRecovery: listener worker interrupts background thread > 2016-11-16 15:17:12,989 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) PeriodicRecovery: background thread Status <== SCANNING > 2016-11-16 15:17:12,989 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) PeriodicRecovery: background thread scanning > 2016-11-16 15:17:12,989 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) Periodic recovery first pass at Wed, 16 Nov 2016 15:17:12 > 2016-11-16 15:17:12,989 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) CommitMarkableResourceRecordRecoveryModule::periodicWorkFirstPass > 2016-11-16 15:17:12,989 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,989 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(/StateManager/BasicAction/TwoPhaseCoordinator/AtomicActionConnectable, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , -1) > 2016-11-16 15:17:12,989 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,990 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) processing /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction transactions > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(/StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , -1) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,990 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,990 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) AtomicActionRecoveryModule first pass > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(/StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , -1) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,990 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) processing /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction transactions > 2016-11-16 15:17:12,990 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) > 2016-11-16 15:17:12,990 DEBUG [com.arjuna.ats.txoj] (Periodic Recovery) TORecoveryModule - first pass > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allTypes(InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: ) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allTypes(OutputObjectState Uid : 0:ffff7f000001:57fceedf:582c6a40:3c > OutputObjectState Type : null > OutputObjectState Size : 28 > OutputObjectState Buffer: , StateManager) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allTypes(OutputObjectState Uid : 0:ffff7f000001:57fceedf:582c6a40:3c > OutputObjectState Type : null > OutputObjectState Size : 60 > OutputObjectState Buffer: , StateManager/BasicAction) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allTypes(OutputObjectState Uid : 0:ffff7f000001:57fceedf:582c6a40:3c > OutputObjectState Type : null > OutputObjectState Size : 112 > OutputObjectState Buffer: , StateManager/BasicAction/TwoPhaseCoordinator) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allTypes(OutputObjectState Uid : 0:ffff7f000001:57fceedf:582c6a40:3c > OutputObjectState Type : null > OutputObjectState Size : 184 > OutputObjectState Buffer: , StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allTypes(OutputObjectState Uid : 0:ffff7f000001:57fceedf:582c6a40:3c > OutputObjectState Type : null > OutputObjectState Size : 276 > OutputObjectState Buffer: , StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allTypes(OutputObjectState Uid : 0:ffff7f000001:57fceedf:582c6a40:3c > OutputObjectState Type : null > OutputObjectState Size : 372 > OutputObjectState Buffer: , StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction/JCA) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allTypes(OutputObjectState Uid : 0:ffff7f000001:57fceedf:582c6a40:3c > OutputObjectState Type : null > OutputObjectState Size : 396 > OutputObjectState Buffer: , RecoveryCoordinator) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allTypes(OutputObjectState Uid : 0:ffff7f000001:57fceedf:582c6a40:3c > OutputObjectState Type : null > OutputObjectState Size : 416 > OutputObjectState Buffer: , CosTransactions) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allTypes(OutputObjectState Uid : 0:ffff7f000001:57fceedf:582c6a40:3c > OutputObjectState Type : null > OutputObjectState Size : 456 > OutputObjectState Buffer: , CosTransactions/XAResourceRecord) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allTypes(OutputObjectState Uid : 0:ffff7f000001:57fceedf:582c6a40:3c > OutputObjectState Type : null > OutputObjectState Size : 472 > OutputObjectState Buffer: , Recovery) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allTypes(OutputObjectState Uid : 0:ffff7f000001:57fceedf:582c6a40:3c > OutputObjectState Type : null > OutputObjectState Size : 500 > OutputObjectState Buffer: , Recovery/FactoryContact) > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,990 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(StateManager, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , 2) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(StateManager/BasicAction, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , 2) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(StateManager/BasicAction/TwoPhaseCoordinator, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , 2) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , 2) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , 2) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction/JCA, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , 2) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction/JCA, StateType.OS_SHADOW) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction/JCA, 10) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction/JCA, StateType.OS_ORIGINAL) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction/JCA, 11) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:25, StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction/JCA) - returning StateStatus.OS_COMMITTED > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(RecoveryCoordinator, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , 2) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff52e38d0c:c91:4140398c:0, RecoveryCoordinator, StateType.OS_SHADOW) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff52e38d0c:c91:4140398c:0, RecoveryCoordinator, 10) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff52e38d0c:c91:4140398c:0, RecoveryCoordinator, StateType.OS_ORIGINAL) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff52e38d0c:c91:4140398c:0, RecoveryCoordinator, 11) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff52e38d0c:c91:4140398c:0, RecoveryCoordinator) - returning StateStatus.OS_COMMITTED > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(CosTransactions, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , 2) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(CosTransactions/XAResourceRecord, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , 2) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, CosTransactions/XAResourceRecord, StateType.OS_SHADOW) > 2016-11-16 15:17:12,991 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, CosTransactions/XAResourceRecord, 10) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, CosTransactions/XAResourceRecord, StateType.OS_ORIGINAL) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, CosTransactions/XAResourceRecord, 11) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:2e, CosTransactions/XAResourceRecord) - returning StateStatus.OS_COMMITTED > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2b, CosTransactions/XAResourceRecord, StateType.OS_SHADOW) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2b, CosTransactions/XAResourceRecord, 10) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2b, CosTransactions/XAResourceRecord, StateType.OS_ORIGINAL) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2b, CosTransactions/XAResourceRecord, 11) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:2b, CosTransactions/XAResourceRecord) - returning StateStatus.OS_COMMITTED > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(Recovery, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , 2) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(Recovery/FactoryContact, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , 2) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:10, Recovery/FactoryContact, StateType.OS_SHADOW) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:10, Recovery/FactoryContact, 10) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:10, Recovery/FactoryContact, StateType.OS_ORIGINAL) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:10, Recovery/FactoryContact, 11) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:10, Recovery/FactoryContact) - returning StateStatus.OS_COMMITTED > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:57fceedf:582c6a40:1b, Recovery/FactoryContact, StateType.OS_SHADOW) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:57fceedf:582c6a40:1b, Recovery/FactoryContact, 10) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:57fceedf:582c6a40:1b, Recovery/FactoryContact, StateType.OS_ORIGINAL) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:57fceedf:582c6a40:1b, Recovery/FactoryContact, 11) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:57fceedf:582c6a40:1b, Recovery/FactoryContact) - returning StateStatus.OS_COMMITTED > 2016-11-16 15:17:12,992 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) > 2016-11-16 15:17:12,992 INFO [com.arjuna.ats.jts] (Periodic Recovery) ARJUNA022199: TopLevelTransactionRecoveryModule First Pass > 2016-11-16 15:17:12,992 INFO [com.arjuna.ats.jts] (Periodic Recovery) ARJUNA022213: TransactionRecoveryModule.periodicWorkFirstPass() > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,992 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) TransactionRecoveryModule: scanning for /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(/StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , -1) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,992 INFO [com.arjuna.ats.arjuna] (Server.Connection:127.0.0.1:50586) ARJUNA012340: RecoveryManager scan scheduled to begin. > 2016-11-16 15:17:12,992 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) > 2016-11-16 15:17:12,992 INFO [com.arjuna.ats.jts] (Periodic Recovery) ARJUNA022190: ServerTransactionRecoveryModule - First Pass > 2016-11-16 15:17:12,992 INFO [com.arjuna.ats.jts] (Periodic Recovery) ARJUNA022213: TransactionRecoveryModule.periodicWorkFirstPass() > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,992 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) TransactionRecoveryModule: scanning for /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(/StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , -1) > 2016-11-16 15:17:12,992 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,992 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) > 2016-11-16 15:17:12,992 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) XARecoveryModule state change IDLE->FIRST_PASS > 2016-11-16 15:17:12,993 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) JTS XARecoveryModule - first pass > 2016-11-16 15:17:12,993 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:12,993 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(/CosTransactions/XAResourceRecord, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , -1) > 2016-11-16 15:17:12,993 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:12,995 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecoveryHelper] (Periodic Recovery) getXAResources() instance: TestXAResourceRecovered(TestXAResourceCommon(id:512, xid:null, timeout:0, prepareReturn:0)) > 2016-11-16 15:17:12,997 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) xarecovery of RecoveryOnlyEJBXAResource{receiverContext=EJBReceiverContext{clientContext=org.jboss.ejb.client.EJBClientContext at 31a25bc7, receiver=org.jboss.as.ejb3.remote.LocalEjbReceiver at 3f537a39}, transactionOriginNodeIdentifier='1'} > 2016-11-16 15:17:12,997 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) Found 0 xids in doubt > 2016-11-16 15:17:12,997 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) RecoveryXids updateIfEquivalentRM2 RecoveryOnlyEJBXAResource{receiverContext=EJBReceiverContext{clientContext=org.jboss.ejb.client.EJBClientContext at 31a25bc7, receiver=org.jboss.as.ejb3.remote.LocalEjbReceiver at 3f537a39}, transactionOriginNodeIdentifier='1'} 1479305832997 > 2016-11-16 15:17:12,997 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) xarecovery of org.jboss.activemq.artemis.wildfly.integration.WildFlyActiveMQXAResourceWrapper at 7a29e943 > 2016-11-16 15:17:12,998 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) Found 0 xids in doubt > 2016-11-16 15:17:13,001 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) xarecovery of TestXAResourceRecovered(TestXAResourceCommon(id:512, xid:null, timeout:0, prepareReturn:0)) > 2016-11-16 15:17:13,005 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecovered] (Periodic Recovery) TestXAResourceRecovered.recover(i=16777216)[id=512] > 2016-11-16 15:17:13,005 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecoveryHelper] (Periodic Recovery) recover() > 2016-11-16 15:17:13,005 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecoveryHelper] (Periodic Recovery) returning 2 Xids > 2016-11-16 15:17:13,005 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecoveryHelper] (Periodic Recovery) returning xid: < 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 > > 2016-11-16 15:17:13,005 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecoveryHelper] (Periodic Recovery) returning xid: < 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 > > 2016-11-16 15:17:13,005 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) Found 2 xids in doubt > 2016-11-16 15:17:13,005 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) Recovered: < 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 > > 2016-11-16 15:17:13,005 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) Recovered: < 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 > > 2016-11-16 15:17:13,010 INFO [org.jboss.as.test.jbossts.common.TestXAResourceCommon] (Periodic Recovery) TestXAResourceCommon.isSameRM(xaResource=RecoveryOnlyEJBXAResource{receiverContext=EJBReceiverContext{clientContext=org.jboss.ejb.client.EJBClientContext at 31a25bc7, receiver=org.jboss.as.ejb3.remote.LocalEjbReceiver at 3f537a39}, transactionOriginNodeIdentifier='1'})[return 'false'][id=512] > 2016-11-16 15:17:13,013 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) RecoveryXids updateIfEquivalentRM1 TestXAResourceRecovered(TestXAResourceCommon(id:512, xid:null, timeout:0, prepareReturn:0)) 1479305833010 > 2016-11-16 15:17:13,016 INFO [org.jboss.as.test.jbossts.common.TestXAResourceCommon] (Periodic Recovery) TestXAResourceCommon.isSameRM(xaResource=org.jboss.activemq.artemis.wildfly.integration.WildFlyActiveMQXAResourceWrapper at 7a29e943)[return 'false'][id=512] > 2016-11-16 15:17:13,017 INFO [org.jboss.as.test.jbossts.common.TestXAResourceCommon] (Periodic Recovery) getJndiName()[return java:/TestXAResource][id=512] > 2016-11-16 15:17:13,017 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) XARecoveryModule state change FIRST_PASS->BETWEEN_PASSES > 2016-11-16 15:17:13,017 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) > 2016-11-16 15:17:23,017 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) Periodic recovery second pass at Wed, 16 Nov 2016 15:17:23 > 2016-11-16 15:17:23,017 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState() > 2016-11-16 15:17:23,017 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(/StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 0 > InputObjectState Buffer: , -1) > 2016-11-16 15:17:23,017 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:23,017 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.allObjUids(/StateManager/BasicAction/TwoPhaseCoordinator/AtomicActionConnectable, InputObjectState Uid : 0:0:0:0:0 > InputObjectState Type : null > InputObjectState Size : 40 > InputObjectState Buffer: , -1) > 2016-11-16 15:17:23,017 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 15:17:23,017 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) > 2016-11-16 15:17:23,017 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) AtomicActionRecoveryModule second pass > 2016-11-16 15:17:23,017 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) > 2016-11-16 15:17:23,017 DEBUG [com.arjuna.ats.txoj] (Periodic Recovery) TORecoveryModule - second pass > 2016-11-16 15:17:23,017 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) > 2016-11-16 15:17:23,018 INFO [com.arjuna.ats.jts] (Periodic Recovery) ARJUNA022200: TopLevelTransactionRecoveryModule Second Pass > 2016-11-16 15:17:23,018 INFO [com.arjuna.ats.jts] (Periodic Recovery) ARJUNA022214: TransactionRecoveryModule.periodicWorkSecondPass() > 2016-11-16 15:17:23,018 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) > 2016-11-16 15:17:23,018 INFO [com.arjuna.ats.jts] (Periodic Recovery) ARJUNA022191: ServerTransactionRecoveryModule - Second Pass > 2016-11-16 15:17:23,018 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) > 2016-11-16 15:17:23,018 DEBUG [com.arjuna.ats.arjuna] (Periodic Recovery) XARecoveryModule state change BETWEEN_PASSES->SECOND_PASS > 2016-11-16 15:17:23,018 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) JTS XARecoveryModule - second pass > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, StateType.OS_SHADOW) > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, 10) > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, 11) > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord) - returning StateStatus.OS_COMMITTED > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.read_committed(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord) > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.read_state(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, StateType.OS_SHADOW) > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, 10) > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, 11) > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord) - returning StateStatus.OS_COMMITTED > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, 11) > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.openAndLock(/home/ochaloup/Transactions/eap-tests-transactions/jbossts/target/jbossas-jbossts/standalone/data/tx-object-store/ShadowNoFileLockStore/defaultStore/CosTransactions/XAResourceRecord/0_ffff7f000001_5857c0a5_582c6a36_2e, FileLock.F_RDLCK, false) > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord) > 2016-11-16 15:17:23,018 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.closeAndUnlock(/home/ochaloup/Transactions/eap-tests-transactions/jbossts/target/jbossas-jbossts/standalone/data/tx-object-store/ShadowNoFileLockStore/defaultStore/CosTransactions/XAResourceRecord/0_ffff7f000001_5857c0a5_582c6a36_2e, java.io.FileInputStream at 655e320b, null) > 2016-11-16 15:17:23,019 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XARecovery 0:ffff7f000001:5857c0a5:582c6a36:2e is non-recoverable > 2016-11-16 15:17:23,019 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord, StateType.OS_SHADOW) > 2016-11-16 15:17:23,019 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord, 10) > 2016-11-16 15:17:23,019 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,019 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord, 11) > 2016-11-16 15:17:23,019 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord) - returning StateStatus.OS_COMMITTED > 2016-11-16 15:17:23,019 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.read_committed(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord) > 2016-11-16 15:17:23,019 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.read_state(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,019 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord, StateType.OS_SHADOW) > 2016-11-16 15:17:23,019 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord, 10) > 2016-11-16 15:17:23,019 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,019 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord, 11) > 2016-11-16 15:17:23,019 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord) - returning StateStatus.OS_COMMITTED > 2016-11-16 15:17:23,020 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,020 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord, 11) > 2016-11-16 15:17:23,020 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.openAndLock(/home/ochaloup/Transactions/eap-tests-transactions/jbossts/target/jbossas-jbossts/standalone/data/tx-object-store/ShadowNoFileLockStore/defaultStore/CosTransactions/XAResourceRecord/0_ffff7f000001_5857c0a5_582c6a36_2b, FileLock.F_RDLCK, false) > 2016-11-16 15:17:23,020 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState(0:ffff7f000001:5857c0a5:582c6a36:2b, /CosTransactions/XAResourceRecord) > 2016-11-16 15:17:23,020 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.closeAndUnlock(/home/ochaloup/Transactions/eap-tests-transactions/jbossts/target/jbossas-jbossts/standalone/data/tx-object-store/ShadowNoFileLockStore/defaultStore/CosTransactions/XAResourceRecord/0_ffff7f000001_5857c0a5_582c6a36_2b, java.io.FileInputStream at 4c2e5fd0, null) > 2016-11-16 15:17:23,021 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XARecovery 0:ffff7f000001:5857c0a5:582c6a36:2b is non-recoverable > 2016-11-16 15:17:23,021 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) JTS XARecoveryModule.transactionInitiatedRecovery completed > 2016-11-16 15:17:23,021 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) xarecovery second pass of RecoveryOnlyEJBXAResource{receiverContext=EJBReceiverContext{clientContext=org.jboss.ejb.client.EJBClientContext at 31a25bc7, receiver=org.jboss.as.ejb3.remote.LocalEjbReceiver at 3f537a39}, transactionOriginNodeIdentifier='1'} > 2016-11-16 15:17:23,021 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) Have 0 Xids to recover on this pass. > 2016-11-16 15:17:23,021 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) xarecovery second pass of org.jboss.activemq.artemis.wildfly.integration.WildFlyActiveMQXAResourceWrapper at 7a29e943 > 2016-11-16 15:17:23,021 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) Have 0 Xids to recover on this pass. > 2016-11-16 15:17:23,024 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) xarecovery second pass of TestXAResourceRecovered(TestXAResourceCommon(id:512, xid:null, timeout:0, prepareReturn:0)) > 2016-11-16 15:17:23,028 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) RecoveryXids _whenFirstSeen toRecover yes TestXAResourceRecovered(TestXAResourceCommon(id:512, xid:null, timeout:0, prepareReturn:0)) 1479305802973 === 1479305843024 > 2016-11-16 15:17:23,030 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) RecoveryXids _whenFirstSeen toRecover no TestXAResourceRecovered(TestXAResourceCommon(id:512, xid:null, timeout:0, prepareReturn:0)) 1479305802973 === 1479305843024 > 2016-11-16 15:17:23,030 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) Have 1 Xids to recover on this pass. > 2016-11-16 15:17:23,031 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.read_committed(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord) > 2016-11-16 15:17:23,031 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.read_state(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,031 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, StateType.OS_SHADOW) > 2016-11-16 15:17:23,031 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, 10) > 2016-11-16 15:17:23,031 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,031 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, 11) > 2016-11-16 15:17:23,031 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord) - returning StateStatus.OS_COMMITTED > 2016-11-16 15:17:23,031 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,031 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord, 11) > 2016-11-16 15:17:23,031 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.openAndLock(/home/ochaloup/Transactions/eap-tests-transactions/jbossts/target/jbossas-jbossts/standalone/data/tx-object-store/ShadowNoFileLockStore/defaultStore/CosTransactions/XAResourceRecord/0_ffff7f000001_5857c0a5_582c6a36_2e, FileLock.F_RDLCK, false) > 2016-11-16 15:17:23,031 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState(0:ffff7f000001:5857c0a5:582c6a36:2e, /CosTransactions/XAResourceRecord) > 2016-11-16 15:17:23,031 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.closeAndUnlock(/home/ochaloup/Transactions/eap-tests-transactions/jbossts/target/jbossas-jbossts/standalone/data/tx-object-store/ShadowNoFileLockStore/defaultStore/CosTransactions/XAResourceRecord/0_ffff7f000001_5857c0a5_582c6a36_2e, java.io.FileInputStream at 75d2f77a, null) > 2016-11-16 15:17:23,032 TRACE [com.arjuna.ats.jtax] (Periodic Recovery) XAResourceRecord.recover > 2016-11-16 15:17:23,033 TRACE [com.arjuna.orbportability] (Periodic Recovery) RootOA::objectIsReady (Servant) > 2016-11-16 15:17:23,034 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionClientRequestInterceptorImpl::send_request ( _is_a ) nodeId=1 requestId=7 > 2016-11-16 15:17:23,035 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::receive_request_service_contexts ( _is_a ) nodeId=1 requestId=7 > 2016-11-16 15:17:23,035 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::receive_request ( _is_a ) nodeId=1 requestId=7 > 2016-11-16 15:17:23,035 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::send_reply ( _is_a ) nodeId=1 requestId=7 > 2016-11-16 15:17:23,035 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::suspendContext ( _is_a ) nodeId=1 requestId=7 > 2016-11-16 15:17:23,036 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionClientRequestInterceptorImpl::receive_reply ( _is_a ) nodeId=1 requestId=7 > 2016-11-16 15:17:23,039 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionClientRequestInterceptorImpl::send_request ( replay_completion ) nodeId=1 requestId=8 > 2016-11-16 15:17:23,039 TRACE [com.arjuna.ats.jts] (Periodic Recovery) ContextManager::current () > 2016-11-16 15:17:23,040 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::receive_request_service_contexts ( replay_completion ) nodeId=1 requestId=8 > 2016-11-16 15:17:23,041 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::receive_request ( replay_completion ) nodeId=1 requestId=8 > 2016-11-16 15:17:23,041 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) JavaIdlRCDefaultServant::replay_completion) > 2016-11-16 15:17:23,042 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) RecoveryCoordinatorId(0:ffff7f000001:5857c0a5:582c6a36:2f*0:ffff7f000001:5857c0a5:582c6a36:25*0:ffff7f000001:5857c0a5:582c6a36:10*true) > 2016-11-16 15:17:23,042 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) JavaIdlDefaultServant replay_completion for Id (0:ffff7f000001:5857c0a5:582c6a36:2f, 0:ffff7f000001:5857c0a5:582c6a36:25, 0:ffff7f000001:5857c0a5:582c6a36:10, interposed-tx) > 2016-11-16 15:17:23,043 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) GenericRecoveryCoordinator(0:ffff7f000001:5857c0a5:582c6a36:2f).replay_completion(resource supplied) > 2016-11-16 15:17:23,044 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) StatusChecker.get_current_status(0:ffff7f000001:5857c0a5:582c6a36:25, 0:ffff7f000001:5857c0a5:582c6a36:10) > 2016-11-16 15:17:23,044 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) StatusChecker.checkOriginalStatus(0:ffff7f000001:5857c0a5:582c6a36:25, 0:ffff7f000001:5857c0a5:582c6a36:10, false) > 2016-11-16 15:17:23,044 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.read_committed(0:ffff7f000001:5857c0a5:582c6a36:10, /Recovery/FactoryContact) > 2016-11-16 15:17:23,044 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.read_state(0:ffff7f000001:5857c0a5:582c6a36:10, /Recovery/FactoryContact, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,044 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:10, /Recovery/FactoryContact, StateType.OS_SHADOW) > 2016-11-16 15:17:23,044 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:10, /Recovery/FactoryContact, 10) > 2016-11-16 15:17:23,044 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:10, /Recovery/FactoryContact, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,044 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:10, /Recovery/FactoryContact, 11) > 2016-11-16 15:17:23,044 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:10, /Recovery/FactoryContact) - returning StateStatus.OS_COMMITTED > 2016-11-16 15:17:23,044 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:10, /Recovery/FactoryContact, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,044 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:10, /Recovery/FactoryContact, 11) > 2016-11-16 15:17:23,044 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.openAndLock(/home/ochaloup/Transactions/eap-tests-transactions/jbossts/target/jbossas-jbossts/standalone/data/tx-object-store/ShadowNoFileLockStore/defaultStore/Recovery/FactoryContact/0_ffff7f000001_5857c0a5_582c6a36_10, FileLock.F_RDLCK, false) > 2016-11-16 15:17:23,044 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) InputObjectState::InputObjectState(0:ffff7f000001:5857c0a5:582c6a36:10, /Recovery/FactoryContact) > 2016-11-16 15:17:23,044 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.closeAndUnlock(/home/ochaloup/Transactions/eap-tests-transactions/jbossts/target/jbossas-jbossts/standalone/data/tx-object-store/ShadowNoFileLockStore/defaultStore/Recovery/FactoryContact/0_ffff7f000001_5857c0a5_582c6a36_10, java.io.FileInputStream at 4178e7fb, null) > 2016-11-16 15:17:23,045 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) StatusChecker.getStatus(0:ffff7f000001:5857c0a5:582c6a36:25, com.arjuna.ats.internal.jts.recovery.contact.FactoryContactItem at d2278c3, false) > 2016-11-16 15:17:23,046 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionClientRequestInterceptorImpl::send_request ( getCurrentStatus ) nodeId=1 requestId=9 > 2016-11-16 15:17:23,046 TRACE [com.arjuna.ats.jts] (Periodic Recovery) ContextManager::current () > 2016-11-16 15:17:23,047 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::receive_request_service_contexts ( getCurrentStatus ) nodeId=1 requestId=9 > 2016-11-16 15:17:23,047 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::receive_request ( getCurrentStatus ) nodeId=1 requestId=9 > 2016-11-16 15:17:23,048 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple, StateType.OS_SHADOW) > 2016-11-16 15:17:23,048 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple, 10) > 2016-11-16 15:17:23,048 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,048 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple, 11) > 2016-11-16 15:17:23,048 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple) - returning StateStatus.OS_UNKNOWN > 2016-11-16 15:17:23,048 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction, StateType.OS_SHADOW) > 2016-11-16 15:17:23,048 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction, 10) > 2016-11-16 15:17:23,048 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,049 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction, 11) > 2016-11-16 15:17:23,049 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction) - returning StateStatus.OS_UNKNOWN > 2016-11-16 15:17:23,050 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, StateType.OS_SHADOW) > 2016-11-16 15:17:23,050 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, 10) > 2016-11-16 15:17:23,050 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,050 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, 11) > 2016-11-16 15:17:23,050 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction) - returning StateStatus.OS_UNKNOWN > 2016-11-16 15:17:23,051 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction, StateType.OS_SHADOW) > 2016-11-16 15:17:23,051 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction, 10) > 2016-11-16 15:17:23,051 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,051 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction, 11) > 2016-11-16 15:17:23,051 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction) - returning StateStatus.OS_UNKNOWN > 2016-11-16 15:17:23,052 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::send_reply ( getCurrentStatus ) nodeId=1 requestId=9 > 2016-11-16 15:17:23,052 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::suspendContext ( getCurrentStatus ) nodeId=1 requestId=9 > 2016-11-16 15:17:23,052 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionClientRequestInterceptorImpl::receive_reply ( getCurrentStatus ) nodeId=1 requestId=9 > 2016-11-16 15:17:23,053 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) StatusChecker.getStatus(0:ffff7f000001:5857c0a5:582c6a36:25) - current status = CosTransactions::StatusNoTransaction > 2016-11-16 15:17:23,053 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionClientRequestInterceptorImpl::send_request ( getStatus ) nodeId=1 requestId=10 > 2016-11-16 15:17:23,053 TRACE [com.arjuna.ats.jts] (Periodic Recovery) ContextManager::current () > 2016-11-16 15:17:23,053 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::receive_request_service_contexts ( getStatus ) nodeId=1 requestId=10 > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::receive_request ( getStatus ) nodeId=1 requestId=10 > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple, StateType.OS_SHADOW) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple, 10) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple, 11) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple) - returning StateStatus.OS_UNKNOWN > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction, StateType.OS_SHADOW) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction, 10) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction, 11) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction) - returning StateStatus.OS_UNKNOWN > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, StateType.OS_SHADOW) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, 10) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, 11) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction) - returning StateStatus.OS_UNKNOWN > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction, StateType.OS_SHADOW) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction, 10) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction, 11) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction) - returning StateStatus.OS_UNKNOWN > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple, StateType.OS_SHADOW) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple, 10) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple, 11) > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple) - returning StateStatus.OS_UNKNOWN > 2016-11-16 15:17:23,054 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction, StateType.OS_SHADOW) > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction, 10) > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction, 11) > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicTransaction) - returning StateStatus.OS_UNKNOWN > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, StateType.OS_SHADOW) > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, 10) > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, 11) > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction) - returning StateStatus.OS_UNKNOWN > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction, StateType.OS_SHADOW) > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction, 10) > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction, StateType.OS_ORIGINAL) > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction, 11) > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:5857c0a5:582c6a36:25, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteHeuristicServerTransaction) - returning StateStatus.OS_UNKNOWN > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::send_reply ( getStatus ) nodeId=1 requestId=10 > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::suspendContext ( getStatus ) nodeId=1 requestId=10 > 2016-11-16 15:17:23,055 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionClientRequestInterceptorImpl::receive_reply ( getStatus ) nodeId=1 requestId=10 > 2016-11-16 15:17:23,055 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) StatusChecker.getStatus(0:ffff7f000001:5857c0a5:582c6a36:25) - stored status = CosTransactions::StatusNoTransaction > 2016-11-16 15:17:23,057 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::send_reply ( replay_completion ) nodeId=1 requestId=8 > 2016-11-16 15:17:23,057 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::suspendContext ( replay_completion ) nodeId=1 requestId=8 > 2016-11-16 15:17:23,057 DEBUG [com.arjuna.ats.jts] (Thread-109) ResourceCompletor.rollback() > 2016-11-16 15:17:23,057 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionClientRequestInterceptorImpl::receive_reply ( replay_completion ) nodeId=1 requestId=8 > 2016-11-16 15:17:23,057 TRACE [com.arjuna.ats.jtax] (Periodic Recovery) XAResourceRecord.recover got status: CosTransactions::StatusRolledBack > 2016-11-16 15:17:23,057 TRACE [com.arjuna.ats.jtax] (Periodic Recovery) XAResourceRecord.doRecovery ( false ) > 2016-11-16 15:17:23,057 INFO [com.arjuna.ats.jtax] (Periodic Recovery) ARJUNA024002: XA recovery rolling back < 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 > > 2016-11-16 15:17:23,057 TRACE [com.arjuna.ats.jtax] (Periodic Recovery) XAResourceRecord.rollback for < 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 > > 2016-11-16 15:17:23,068 TRACE [com.arjuna.ats.jts] (Thread-109) InterpositionClientRequestInterceptorImpl::send_request ( rollback ) nodeId=1 requestId=11 > 2016-11-16 15:17:23,068 TRACE [com.arjuna.ats.jts] (Thread-109) ContextManager::current () > 2016-11-16 15:17:23,069 TRACE [com.arjuna.ats.jts] (Thread-109) InterpositionServerRequestInterceptorImpl::receive_request_service_contexts ( rollback ) nodeId=1 requestId=11 > 2016-11-16 15:17:23,069 TRACE [com.arjuna.ats.jts] (Thread-109) InterpositionServerRequestInterceptorImpl::receive_request ( rollback ) nodeId=1 requestId=11 > 2016-11-16 15:17:23,070 TRACE [com.arjuna.ats.jtax] (Thread-109) XAResourceRecord.rollback for < 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 > > 2016-11-16 15:17:23,074 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecovered] (Periodic Recovery) TestXAResourceRecovered.rollback(Xid=< 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 >)[id=512] > 2016-11-16 15:17:23,074 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecoveryHelper] (Periodic Recovery) removeLog(xid=< 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 > > 2016-11-16 15:17:23,074 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecoveryHelper] (Periodic Recovery) Using file /home/ochaloup/Transactions/eap-tests-transactions/jbossts/target/jbossas-jbossts/standalone/data/tx-object-store/TestXAResourceStateStore/TestXAResource.ser for saving state of the org.jboss.as.test.jbossts.common.TestXAResource XA resource > {code} > [2] > {code} > 2016-11-16 09:45:51,329 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) StatusChecker.getStatus(0:ffff7f000001:7c17affe:582c1c73:28, com.arjuna.ats.internal.jts.recovery.contact.FactoryContactItem at 7b5023d7, false) > 2016-11-16 09:45:51,330 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionClientRequestInterceptorImpl::send_request ( getCurrentStatus ) nodeId=1 requestId=10 > 2016-11-16 09:45:51,330 TRACE [com.arjuna.ats.jts] (Periodic Recovery) ContextManager::current () > 2016-11-16 09:45:51,330 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::receive_request_service_contexts ( getCurrentStatus ) nodeId=1 requestId=10 > 2016-11-16 09:45:51,330 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::receive_request ( getCurrentStatus ) nodeId=1 requestId=10 > 2016-11-16 09:45:51,335 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::send_exception ( getCurrentStatus ) nodeId=1 requestId=10 > 2016-11-16 09:45:51,335 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::suspendContext ( getCurrentStatus ) nodeId=1 requestId=10 > 2016-11-16 09:45:51,338 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionClientRequestInterceptorImpl::receive_exception ( getCurrentStatus ) nodeId=1 requestId=10 > 2016-11-16 09:45:51,339 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) StatusChecker.getStatus(0:ffff7f000001:7c17affe:582c1c73:28) - COMM_FAILURE = dead > 2016-11-16 09:45:51,339 WARN [com.arjuna.ats.jts] (Periodic Recovery) ARJUNA022139: CORBA exception on trying to contact original process: org.omg.CORBA.BAD_OPERATION: ----------BEGIN server-side stack trace---------- > org.omg.CORBA.BAD_OPERATION: vmcid: 0x0 minor code: 0 completed: Maybe > at com.arjuna.ArjunaOTS.ArjunaTransactionPOA._invoke(ArjunaTransactionPOA.java:50) > at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(CorbaServerRequestDispatcherImpl.java:654) > at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(CorbaServerRequestDispatcherImpl.java:205) > at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(CorbaMessageMediatorImpl.java:1700) > at com.sun.corba.se.impl.protocol.SharedCDRClientRequestDispatcherImpl.marshalingComplete(SharedCDRClientRequestDispatcherImpl.java:180) > at com.sun.corba.se.impl.protocol.CorbaClientDelegateImpl.invoke(CorbaClientDelegateImpl.java:148) > at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:475) > at com.arjuna.ArjunaOTS._ArjunaFactoryStub.getCurrentStatus(_ArjunaFactoryStub.java:76) > at com.arjuna.ats.internal.jts.recovery.contact.StatusChecker.getStatus(StatusChecker.java:176) > at com.arjuna.ats.internal.jts.recovery.contact.StatusChecker.checkOriginalStatus(StatusChecker.java:144) > at com.arjuna.ats.internal.jts.recovery.contact.StatusChecker.get_current_status(StatusChecker.java:110) > at com.arjuna.ats.internal.jts.orbspecific.recovery.recoverycoordinators.GenericRecoveryCoordinator.get_status(GenericRecoveryCoordinator.java:355) > at com.arjuna.ats.internal.jts.orbspecific.recovery.recoverycoordinators.GenericRecoveryCoordinator.replay_completion(GenericRecoveryCoordinator.java:145) > at com.arjuna.ats.internal.jts.orbspecific.javaidl.recoverycoordinators.JavaIdlRCDefaultServant.replay_completion(JavaIdlRCDefaultServant.java:101) > at org.omg.CosTransactions.RecoveryCoordinatorPOA._invoke(RecoveryCoordinatorPOA.java:39) > at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(CorbaServerRequestDispatcherImpl.java:654) > at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(CorbaServerRequestDispatcherImpl.java:205) > at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(CorbaMessageMediatorImpl.java:1700) > at com.sun.corba.se.impl.protocol.SharedCDRClientRequestDispatcherImpl.marshalingComplete(SharedCDRClientRequestDispatcherImpl.java:180) > at com.sun.corba.se.impl.protocol.CorbaClientDelegateImpl.invoke(CorbaClientDelegateImpl.java:148) > at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:475) > at org.omg.CosTransactions._RecoveryCoordinatorStub.replay_completion(_RecoveryCoordinatorStub.java:20) > at com.arjuna.ats.internal.jta.resources.jts.orbspecific.XAResourceRecord.recover(XAResourceRecord.java:1226) > at com.arjuna.ats.internal.jta.recovery.jts.XARecoveryResourceImple.recover(XARecoveryResourceImple.java:88) > at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.xaRecoverySecondPass(XARecoveryModule.java:736) > at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.bottomUpRecovery(XARecoveryModule.java:461) > at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.periodicWorkSecondPass(XARecoveryModule.java:218) > at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.doWorkInternal(PeriodicRecovery.java:811) > at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.run(PeriodicRecovery.java:377) > ----------END server-side stack trace---------- vmcid: 0x0 minor code: 0 completed: Maybe > at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) > at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) > at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) > at java.lang.reflect.Constructor.newInstance(Constructor.java:423) > at com.sun.corba.se.impl.protocol.giopmsgheaders.MessageBase.getSystemException(MessageBase.java:921) > at com.sun.corba.se.impl.protocol.giopmsgheaders.ReplyMessage_1_2.getSystemException(ReplyMessage_1_2.java:116) > at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.getSystemExceptionReply(CorbaMessageMediatorImpl.java:590) > at com.sun.corba.se.impl.protocol.CorbaClientRequestDispatcherImpl.processResponse(CorbaClientRequestDispatcherImpl.java:489) > at com.sun.corba.se.impl.protocol.SharedCDRClientRequestDispatcherImpl.marshalingComplete(SharedCDRClientRequestDispatcherImpl.java:222) > at com.sun.corba.se.impl.protocol.CorbaClientDelegateImpl.invoke(CorbaClientDelegateImpl.java:148) > at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:475) > at com.arjuna.ArjunaOTS._ArjunaFactoryStub.getCurrentStatus(_ArjunaFactoryStub.java:76) > at com.arjuna.ats.internal.jts.recovery.contact.StatusChecker.getStatus(StatusChecker.java:176) > at com.arjuna.ats.internal.jts.recovery.contact.StatusChecker.checkOriginalStatus(StatusChecker.java:144) > at com.arjuna.ats.internal.jts.recovery.contact.StatusChecker.get_current_status(StatusChecker.java:110) > at com.arjuna.ats.internal.jts.orbspecific.recovery.recoverycoordinators.GenericRecoveryCoordinator.get_status(GenericRecoveryCoordinator.java:355) > at com.arjuna.ats.internal.jts.orbspecific.recovery.recoverycoordinators.GenericRecoveryCoordinator.replay_completion(GenericRecoveryCoordinator.java:145) > at com.arjuna.ats.internal.jts.orbspecific.javaidl.recoverycoordinators.JavaIdlRCDefaultServant.replay_completion(JavaIdlRCDefaultServant.java:101) > at org.omg.CosTransactions.RecoveryCoordinatorPOA._invoke(RecoveryCoordinatorPOA.java:39) > at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(CorbaServerRequestDispatcherImpl.java:654) > at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(CorbaServerRequestDispatcherImpl.java:205) > at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(CorbaMessageMediatorImpl.java:1700) > at com.sun.corba.se.impl.protocol.SharedCDRClientRequestDispatcherImpl.marshalingComplete(SharedCDRClientRequestDispatcherImpl.java:180) > at com.sun.corba.se.impl.protocol.CorbaClientDelegateImpl.invoke(CorbaClientDelegateImpl.java:148) > at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:475) > at org.omg.CosTransactions._RecoveryCoordinatorStub.replay_completion(_RecoveryCoordinatorStub.java:20) > at com.arjuna.ats.internal.jta.resources.jts.orbspecific.XAResourceRecord.recover(XAResourceRecord.java:1226) > at com.arjuna.ats.internal.jta.recovery.jts.XARecoveryResourceImple.recover(XARecoveryResourceImple.java:88) > at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.xaRecoverySecondPass(XARecoveryModule.java:736) > at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.bottomUpRecovery(XARecoveryModule.java:461) > at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.periodicWorkSecondPass(XARecoveryModule.java:218) > at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.doWorkInternal(PeriodicRecovery.java:811) > at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.run(PeriodicRecovery.java:377) > 2016-11-16 09:45:51,339 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) OutputObjectState::OutputObjectState() > 2016-11-16 09:45:51,339 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.write_committed(0:ffff7f000001:7c17affe:582c1c73:14, /Recovery/FactoryContact) > 2016-11-16 09:45:51,339 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.write_state(0:ffff7f000001:7c17affe:582c1c73:14, /Recovery/FactoryContact, StateType.OS_ORIGINAL) > 2016-11-16 09:45:51,339 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:7c17affe:582c1c73:14, /Recovery/FactoryContact, StateType.OS_ORIGINAL) > 2016-11-16 09:45:51,339 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:7c17affe:582c1c73:14, /Recovery/FactoryContact, 11) > 2016-11-16 09:45:51,339 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.openAndLock(/home/ochaloup/Transactions/eap-tests-transactions/jbossts/target/jbossas-jbossts/standalone/data/tx-object-store/ShadowNoFileLockStore/defaultStore/Recovery/FactoryContact/0_ffff7f000001_7c17affe_582c1c73_14, FileLock.F_WRLCK, true) > 2016-11-16 09:45:51,345 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.closeAndUnlock(/home/ochaloup/Transactions/eap-tests-transactions/jbossts/target/jbossas-jbossts/standalone/data/tx-object-store/ShadowNoFileLockStore/defaultStore/Recovery/FactoryContact/0_ffff7f000001_7c17affe_582c1c73_14, null, java.io.FileOutputStream at 33746342) > 2016-11-16 09:45:51,346 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) CachedRecoveredTransaction created [0:ffff7f000001:7c17affe:582c1c73:28, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction] > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) StateManager::StateManager( 0:ffff7f000001:7c17affe:582c1c73:28 ) > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) BasicAction::BasicAction(0:ffff7f000001:7c17affe:582c1c73:28) > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.jts] (Periodic Recovery) ArjunaTransactionImple::ArjunaTransactionImple ( 0:ffff7f000001:7c17affe:582c1c73:28 ) > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.jts] (Periodic Recovery) ServerTransaction::ServerTransaction ( 0:ffff7f000001:7c17affe:582c1c73:28 ) > 2016-11-16 09:45:51,347 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) RecoveredServerTransaction 0:ffff7f000001:7c17affe:582c1c73:28 created > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:7c17affe:582c1c73:28, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, StateType.OS_SHADOW) > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:7c17affe:582c1c73:28, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, 10) > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:7c17affe:582c1c73:28, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, StateType.OS_ORIGINAL) > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:7c17affe:582c1c73:28, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction, 11) > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:7c17affe:582c1c73:28, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction) - returning StateStatus.OS_UNKNOWN > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) StateManager::StateManager( 0:ffff7f000001:7c17affe:582c1c73:28 ) > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) BasicAction::BasicAction(0:ffff7f000001:7c17affe:582c1c73:28) > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.jts] (Periodic Recovery) ArjunaTransactionImple::ArjunaTransactionImple ( 0:ffff7f000001:7c17affe:582c1c73:28 ) > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.jts] (Periodic Recovery) ServerTransaction::ServerTransaction ( 0:ffff7f000001:7c17affe:582c1c73:28 ) > 2016-11-16 09:45:51,347 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) RecoveredServerTransaction 0:ffff7f000001:7c17affe:582c1c73:28 created > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:7c17affe:582c1c73:28, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteServerTransaction, StateType.OS_SHADOW) > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:7c17affe:582c1c73:28, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteServerTransaction, 10) > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.genPathName(0:ffff7f000001:7c17affe:582c1c73:28, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteServerTransaction, StateType.OS_ORIGINAL) > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) FileSystemStore.genPathName(0:ffff7f000001:7c17affe:582c1c73:28, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteServerTransaction, 11) > 2016-11-16 09:45:51,347 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:7c17affe:582c1c73:28, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/AssumedCompleteServerTransaction) - returning StateStatus.OS_UNKNOWN > 2016-11-16 09:45:51,347 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) AssumedCompleteServerTransaction 0:ffff7f000001:7c17affe:582c1c73:28 created > 2016-11-16 09:45:51,347 DEBUG [com.arjuna.ats.jts] (Periodic Recovery) CachedRecoveredTransaction.get_status [0:ffff7f000001:7c17affe:582c1c73:28, /StateManager/BasicAction/TwoPhaseCoordinator/ArjunaTransactionImple/ServerTransaction] = CosTransactions::StatusRolledBack > 2016-11-16 09:45:51,348 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::send_reply ( replay_completion ) nodeId=1 requestId=9 > 2016-11-16 09:45:51,348 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionServerRequestInterceptorImpl::suspendContext ( replay_completion ) nodeId=1 requestId=9 > 2016-11-16 09:45:51,348 DEBUG [com.arjuna.ats.jts] (Thread-108) ResourceCompletor.rollback() > 2016-11-16 09:45:51,349 TRACE [com.arjuna.ats.jts] (Thread-108) InterpositionClientRequestInterceptorImpl::send_request ( rollback ) nodeId=1 requestId=11 > 2016-11-16 09:45:51,349 TRACE [com.arjuna.ats.jts] (Thread-108) ContextManager::current () > 2016-11-16 09:45:51,349 TRACE [com.arjuna.ats.jts] (Periodic Recovery) InterpositionClientRequestInterceptorImpl::receive_reply ( replay_completion ) nodeId=1 requestId=9 > 2016-11-16 09:45:51,349 TRACE [com.arjuna.ats.jtax] (Periodic Recovery) XAResourceRecord.recover got status: CosTransactions::StatusRolledBack > 2016-11-16 09:45:51,349 TRACE [com.arjuna.ats.jtax] (Periodic Recovery) XAResourceRecord.doRecovery ( false ) > 2016-11-16 09:45:51,349 INFO [com.arjuna.ats.jtax] (Periodic Recovery) ARJUNA024002: XA recovery rolling back < 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 > > 2016-11-16 09:45:51,349 TRACE [com.arjuna.ats.jts] (Thread-108) InterpositionServerRequestInterceptorImpl::receive_request_service_contexts ( rollback ) nodeId=1 requestId=11 > 2016-11-16 09:45:51,349 TRACE [com.arjuna.ats.jtax] (Periodic Recovery) XAResourceRecord.rollback for < 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 > > 2016-11-16 09:45:51,349 TRACE [com.arjuna.ats.jts] (Thread-108) InterpositionServerRequestInterceptorImpl::receive_request ( rollback ) nodeId=1 requestId=11 > 2016-11-16 09:45:51,350 TRACE [com.arjuna.ats.jtax] (Thread-108) XAResourceRecord.rollback for < 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 > > 2016-11-16 09:45:51,354 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecovered] (Periodic Recovery) TestXAResourceRecovered.rollback(Xid=< 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 >)[id=947] > 2016-11-16 09:45:51,354 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecoveryHelper] (Periodic Recovery) removeLog(xid=< 4660, 64, 64, 12700100004200042000000000000000000000000000000000000000000000000000, 12700100004200042000000000000000000000000000000000000000000000000000 > > 2016-11-16 09:45:51,354 INFO [org.jboss.as.test.jbossts.common.TestXAResourceRecoveryHelper] (Periodic Recovery) Using file /home/ochaloup/Transactions/eap-tests-transactions/jbossts/target/jbossas-jbossts/standalone/data/tx-object-store/TestXAResourceStateStore/TestXAResource.ser for saving state of the org.jboss.as.test.jbossts.common.TestXAResource XA resource > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 21 04:51:00 2016 From: issues at jboss.org (Ondra Chaloupka (JIRA)) Date: Mon, 21 Nov 2016 04:51:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2792) Participant is not rolled-back when RMERR thrown during prepare phase In-Reply-To: References: Message-ID: Ondra Chaloupka created JBTM-2792: ------------------------------------- Summary: Participant is not rolled-back when RMERR thrown during prepare phase Key: JBTM-2792 URL: https://issues.jboss.org/browse/JBTM-2792 Project: JBoss Transaction Manager Issue Type: Bug Reporter: Ondra Chaloupka Priority: Critical I do experience trouble - or maybe different behavior against older version of Narayana - with forgetting transaction log when failure is caused by jdbc driver throws XAException.XAER_RMERR during prepare phase of 2PC. The test scenario is following {quote} * prepare db/jms XA * stop connection to db/jms * prepare test XA * commit db/jms XA (connection is down - jdbc driver throws?XAException.XAER_RMERR) * client gets javax.transaction.TransactionRolledbackException from server side * trying to abort transaction * rollback of db resource but connection is down * rolback test XA???? * connection is started again * expected behaviour: periodic recovery -> rollback db XA {quote} For current Narayana version (tested with 5.3.5 and 5.4.1.snapshot) the periodic recovery does not rolled back the participant during recovery cycle. For Narayana 5.3.3.Final periodic recovery votes for rollback (ROLLBACK)[1]. Narayan 5.3.5.Final ends with voting for doing nothing (JTATransactionLogXAResourceOrphanFilter.LEAVE_ALONE)[2]. It seems to me that's caused by fact that directly after transaction commit fails (because of not existing connection) for previous version of Narayana transaction record about participant was removed from txn log [3]. But in current version the transaction record is left in log[4] and orphan filters do not vote for roll-backing in bottom-up phase later on. [1] {code} 2016-11-21 09:01:25,576 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction) - returning StateStatus.OS_UNKNOWN2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) No record found for < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS >2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter voted ABSTAIN2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is 12016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTANodeNameXAResourceOrphanFilter voted ROLLBACK2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) subordinate node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is null2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.SubordinateJTAXAResourceOrphanFilter voted ABSTAIN2016-11-21 09:01:25,577 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is 1 {code} [2] {code} 2016-11-21 09:18:03,008 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) Found record for < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-359c90f5:5832ad62:27, node_name=1, branch_uid=0:ffff7f000001:-359c90f5:5832ad62:2a, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS >2016-11-21 09:18:03,008 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter voted LEAVE_ALONE {code} [3] {code} 2016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) BasicAction::updateState() for action-id 0:ffff7f000001:-70f14116:5832a97b:262016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) FileSystemStore.remove_committed(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction)2016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.remove_state(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL) {code} [4] {code} 2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) Packing action status of ActionStatus.ABORTING2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) FileSystemStore.write_committed(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction)2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.write_state(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL)2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.genPathName(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL) {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 21 04:52:00 2016 From: issues at jboss.org (Ondra Chaloupka (JIRA)) Date: Mon, 21 Nov 2016 04:52:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2792) Participant is not rolled-back when RMERR thrown during prepare phase In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ondra Chaloupka reassigned JBTM-2792: ------------------------------------- Assignee: Tom Jenkinson > Participant is not rolled-back when RMERR thrown during prepare phase > --------------------------------------------------------------------- > > Key: JBTM-2792 > URL: https://issues.jboss.org/browse/JBTM-2792 > Project: JBoss Transaction Manager > Issue Type: Bug > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Critical > Attachments: JPAProxyCrashRecoveryTestCase_prepareHalt_jta_server-5.3.3.Final.log, JPAProxyCrashRecoveryTestCase_prepareHalt_jta_server-5.3.5.Final.log > > > I do experience trouble - or maybe different behavior against older version of Narayana - with forgetting transaction log when failure is caused by jdbc driver throws XAException.XAER_RMERR during prepare phase of 2PC. > The test scenario is following > {quote} > * prepare db/jms XA > * stop connection to db/jms > * prepare test XA > * commit db/jms XA (connection is down - jdbc driver throws?XAException.XAER_RMERR) > * client gets javax.transaction.TransactionRolledbackException from server side > * trying to abort transaction > * rollback of db resource but connection is down > * rolback test XA???? > * connection is started again > * expected behaviour: periodic recovery -> rollback db XA > {quote} > For current Narayana version (tested with 5.3.5 and 5.4.1.snapshot) the periodic recovery does not rolled back the participant during recovery cycle. > For Narayana 5.3.3.Final periodic recovery votes for rollback (ROLLBACK)[1]. > Narayan 5.3.5.Final ends with voting for doing nothing (JTATransactionLogXAResourceOrphanFilter.LEAVE_ALONE)[2]. > It seems to me that's caused by fact that directly after transaction commit fails (because of not existing connection) for previous version of Narayana transaction record about participant was removed from txn log [3]. But in current version the transaction record is left in log[4] and orphan filters do not vote for roll-backing in bottom-up phase later on. > [1] > {code} > 2016-11-21 09:01:25,576 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction) - returning StateStatus.OS_UNKNOWN2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) No record found for < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS >2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter voted ABSTAIN2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is 12016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTANodeNameXAResourceOrphanFilter voted ROLLBACK2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) subordinate node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is null2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.SubordinateJTAXAResourceOrphanFilter voted ABSTAIN2016-11-21 09:01:25,577 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is 1 > {code} > [2] > {code} > 2016-11-21 09:18:03,008 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) Found record for < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-359c90f5:5832ad62:27, node_name=1, branch_uid=0:ffff7f000001:-359c90f5:5832ad62:2a, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS >2016-11-21 09:18:03,008 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter voted LEAVE_ALONE > {code} > [3] > {code} > 2016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) BasicAction::updateState() for action-id 0:ffff7f000001:-70f14116:5832a97b:262016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) FileSystemStore.remove_committed(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction)2016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.remove_state(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL) > {code} > [4] > {code} > 2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) Packing action status of ActionStatus.ABORTING2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) FileSystemStore.write_committed(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction)2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.write_state(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL)2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.genPathName(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL) > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 21 04:52:00 2016 From: issues at jboss.org (Ondra Chaloupka (JIRA)) Date: Mon, 21 Nov 2016 04:52:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2792) Participant is not rolled-back when RMERR thrown during prepare phase In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ondra Chaloupka updated JBTM-2792: ---------------------------------- Attachment: JPAProxyCrashRecoveryTestCase_prepareHalt_jta_server-5.3.3.Final.log JPAProxyCrashRecoveryTestCase_prepareHalt_jta_server-5.3.5.Final.log > Participant is not rolled-back when RMERR thrown during prepare phase > --------------------------------------------------------------------- > > Key: JBTM-2792 > URL: https://issues.jboss.org/browse/JBTM-2792 > Project: JBoss Transaction Manager > Issue Type: Bug > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Critical > Attachments: JPAProxyCrashRecoveryTestCase_prepareHalt_jta_server-5.3.3.Final.log, JPAProxyCrashRecoveryTestCase_prepareHalt_jta_server-5.3.5.Final.log > > > I do experience trouble - or maybe different behavior against older version of Narayana - with forgetting transaction log when failure is caused by jdbc driver throws XAException.XAER_RMERR during prepare phase of 2PC. > The test scenario is following > {quote} > * prepare db/jms XA > * stop connection to db/jms > * prepare test XA > * commit db/jms XA (connection is down - jdbc driver throws?XAException.XAER_RMERR) > * client gets javax.transaction.TransactionRolledbackException from server side > * trying to abort transaction > * rollback of db resource but connection is down > * rolback test XA???? > * connection is started again > * expected behaviour: periodic recovery -> rollback db XA > {quote} > For current Narayana version (tested with 5.3.5 and 5.4.1.snapshot) the periodic recovery does not rolled back the participant during recovery cycle. > For Narayana 5.3.3.Final periodic recovery votes for rollback (ROLLBACK)[1]. > Narayan 5.3.5.Final ends with voting for doing nothing (JTATransactionLogXAResourceOrphanFilter.LEAVE_ALONE)[2]. > It seems to me that's caused by fact that directly after transaction commit fails (because of not existing connection) for previous version of Narayana transaction record about participant was removed from txn log [3]. But in current version the transaction record is left in log[4] and orphan filters do not vote for roll-backing in bottom-up phase later on. > [1] > {code} > 2016-11-21 09:01:25,576 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction) - returning StateStatus.OS_UNKNOWN2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) No record found for < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS >2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter voted ABSTAIN2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is 12016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTANodeNameXAResourceOrphanFilter voted ROLLBACK2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) subordinate node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is null2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.SubordinateJTAXAResourceOrphanFilter voted ABSTAIN2016-11-21 09:01:25,577 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is 1 > {code} > [2] > {code} > 2016-11-21 09:18:03,008 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) Found record for < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-359c90f5:5832ad62:27, node_name=1, branch_uid=0:ffff7f000001:-359c90f5:5832ad62:2a, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS >2016-11-21 09:18:03,008 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter voted LEAVE_ALONE > {code} > [3] > {code} > 2016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) BasicAction::updateState() for action-id 0:ffff7f000001:-70f14116:5832a97b:262016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) FileSystemStore.remove_committed(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction)2016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.remove_state(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL) > {code} > [4] > {code} > 2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) Packing action status of ActionStatus.ABORTING2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) FileSystemStore.write_committed(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction)2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.write_state(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL)2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.genPathName(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL) > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 21 04:54:00 2016 From: issues at jboss.org (Ondra Chaloupka (JIRA)) Date: Mon, 21 Nov 2016 04:54:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2792) Participant is not rolled-back when RMERR thrown during prepare phase In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ondra Chaloupka updated JBTM-2792: ---------------------------------- Component/s: JTA > Participant is not rolled-back when RMERR thrown during prepare phase > --------------------------------------------------------------------- > > Key: JBTM-2792 > URL: https://issues.jboss.org/browse/JBTM-2792 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JTA > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Critical > Attachments: JPAProxyCrashRecoveryTestCase_prepareHalt_jta_server-5.3.3.Final.log, JPAProxyCrashRecoveryTestCase_prepareHalt_jta_server-5.3.5.Final.log > > > I do experience trouble - or maybe different behavior against older version of Narayana - with forgetting transaction log when failure is caused by jdbc driver throws XAException.XAER_RMERR during prepare phase of 2PC. > The test scenario is following > {quote} > * prepare db/jms XA > * stop connection to db/jms > * prepare test XA > * commit db/jms XA (connection is down - jdbc driver throws?XAException.XAER_RMERR) > * client gets javax.transaction.TransactionRolledbackException from server side > * trying to abort transaction > * rollback of db resource but connection is down > * rolback test XA???? > * connection is started again > * expected behaviour: periodic recovery -> rollback db XA > {quote} > For current Narayana version (tested with 5.3.5 and 5.4.1.snapshot) the periodic recovery does not rolled back the participant during recovery cycle. > For Narayana 5.3.3.Final periodic recovery votes for rollback (ROLLBACK)[1]. > Narayan 5.3.5.Final ends with voting for doing nothing (JTATransactionLogXAResourceOrphanFilter.LEAVE_ALONE)[2]. > It seems to me that's caused by fact that directly after transaction commit fails (because of not existing connection) for previous version of Narayana transaction record about participant was removed from txn log [3]. But in current version the transaction record is left in log[4] and orphan filters do not vote for roll-backing in bottom-up phase later on. > [1] > {code} > 2016-11-21 09:01:25,576 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction) - returning StateStatus.OS_UNKNOWN2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) No record found for < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS >2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter voted ABSTAIN2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is 12016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTANodeNameXAResourceOrphanFilter voted ROLLBACK2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) subordinate node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is null2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.SubordinateJTAXAResourceOrphanFilter voted ABSTAIN2016-11-21 09:01:25,577 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is 1 > {code} > [2] > {code} > 2016-11-21 09:18:03,008 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) Found record for < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-359c90f5:5832ad62:27, node_name=1, branch_uid=0:ffff7f000001:-359c90f5:5832ad62:2a, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS >2016-11-21 09:18:03,008 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter voted LEAVE_ALONE > {code} > [3] > {code} > 2016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) BasicAction::updateState() for action-id 0:ffff7f000001:-70f14116:5832a97b:262016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) FileSystemStore.remove_committed(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction)2016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.remove_state(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL) > {code} > [4] > {code} > 2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) Packing action status of ActionStatus.ABORTING2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) FileSystemStore.write_committed(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction)2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.write_state(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL)2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.genPathName(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL) > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 21 04:54:01 2016 From: issues at jboss.org (Ondra Chaloupka (JIRA)) Date: Mon, 21 Nov 2016 04:54:01 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2792) Participant is not rolled-back when RMERR thrown during prepare phase In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ondra Chaloupka updated JBTM-2792: ---------------------------------- Affects Version/s: 5.3.5.Final > Participant is not rolled-back when RMERR thrown during prepare phase > --------------------------------------------------------------------- > > Key: JBTM-2792 > URL: https://issues.jboss.org/browse/JBTM-2792 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JTA > Affects Versions: 5.3.5.Final > Reporter: Ondra Chaloupka > Assignee: Tom Jenkinson > Priority: Critical > Attachments: JPAProxyCrashRecoveryTestCase_prepareHalt_jta_server-5.3.3.Final.log, JPAProxyCrashRecoveryTestCase_prepareHalt_jta_server-5.3.5.Final.log > > > I do experience trouble - or maybe different behavior against older version of Narayana - with forgetting transaction log when failure is caused by jdbc driver throws XAException.XAER_RMERR during prepare phase of 2PC. > The test scenario is following > {quote} > * prepare db/jms XA > * stop connection to db/jms > * prepare test XA > * commit db/jms XA (connection is down - jdbc driver throws?XAException.XAER_RMERR) > * client gets javax.transaction.TransactionRolledbackException from server side > * trying to abort transaction > * rollback of db resource but connection is down > * rolback test XA???? > * connection is started again > * expected behaviour: periodic recovery -> rollback db XA > {quote} > For current Narayana version (tested with 5.3.5 and 5.4.1.snapshot) the periodic recovery does not rolled back the participant during recovery cycle. > For Narayana 5.3.3.Final periodic recovery votes for rollback (ROLLBACK)[1]. > Narayan 5.3.5.Final ends with voting for doing nothing (JTATransactionLogXAResourceOrphanFilter.LEAVE_ALONE)[2]. > It seems to me that's caused by fact that directly after transaction commit fails (because of not existing connection) for previous version of Narayana transaction record about participant was removed from txn log [3]. But in current version the transaction record is left in log[4] and orphan filters do not vote for roll-backing in bottom-up phase later on. > [1] > {code} > 2016-11-21 09:01:25,576 TRACE [com.arjuna.ats.arjuna] (Periodic Recovery) ShadowingStore.currentState(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction) - returning StateStatus.OS_UNKNOWN2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) No record found for < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS >2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter voted ABSTAIN2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is 12016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTANodeNameXAResourceOrphanFilter voted ROLLBACK2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) subordinate node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is null2016-11-21 09:01:25,576 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.SubordinateJTAXAResourceOrphanFilter voted ABSTAIN2016-11-21 09:01:25,577 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) node name of < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-70f14116:5832a97b:26, node_name=1, branch_uid=0:ffff7f000001:-70f14116:5832a97b:29, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS > is 1 > {code} > [2] > {code} > 2016-11-21 09:18:03,008 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) Found record for < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff7f000001:-359c90f5:5832ad62:27, node_name=1, branch_uid=0:ffff7f000001:-359c90f5:5832ad62:2a, subordinatenodename=null, eis_name=java:jboss/xa-datasources/CrashRecoveryDS >2016-11-21 09:18:03,008 DEBUG [com.arjuna.ats.jta] (Periodic Recovery) XAResourceOrphanFilter com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter voted LEAVE_ALONE > {code} > [3] > {code} > 2016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) BasicAction::updateState() for action-id 0:ffff7f000001:-70f14116:5832a97b:262016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) FileSystemStore.remove_committed(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction)2016-11-21 09:00:33,981 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.remove_state(0:ffff7f000001:-70f14116:5832a97b:26, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL) > {code} > [4] > {code} > 2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) Packing action status of ActionStatus.ABORTING2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) FileSystemStore.write_committed(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction)2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.write_state(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL)2016-11-21 09:17:11,785 TRACE [com.arjuna.ats.arjuna] (default task-8) ShadowingStore.genPathName(0:ffff7f000001:-359c90f5:5832ad62:27, /StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction, StateType.OS_ORIGINAL) > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 21 11:01:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Mon, 21 Nov 2016 11:01:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2793) TestATSubordinateCrashDuringPrepare failure In-Reply-To: References: Message-ID: Gytis Trikleris created JBTM-2793: ------------------------------------- Summary: TestATSubordinateCrashDuringPrepare failure Key: JBTM-2793 URL: https://issues.jboss.org/browse/JBTM-2793 Project: JBoss Transaction Manager Issue Type: Bug Components: XTS Reporter: Gytis Trikleris Assignee: Gytis Trikleris Priority: Minor http://narayanaci1.eng.hst.ams2.redhat.com/job/narayana-codeCoverage/13/ {code} ------------------------------------------------------------------------------- Test set: com.arjuna.qa.junit.TestATSubordinateCrashDuringPrepare ------------------------------------------------------------------------------- Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 630.486 sec <<< FAILURE! - in com.arjuna.qa.junit.TestATSubordinateCrashDuringPrepare subordinateMultiParticipantPrepareAndCommitTest(com.arjuna.qa.junit.TestATSubordinateCrashDuringPrepare) Time elapsed: 630.486 sec <<< ERROR! java.lang.RuntimeException: jboss-as was not killed by Byteman, this indicates a test failure at com.arjuna.qa.junit.TestATSubordinateCrashDuringPrepare.subordinateMultiParticipantPrepareAndCommitTest(TestATSubordinateCrashDuringPrepare.java:17) {code} {code} Starting arquillian with java VM args: -server -Xms64m -Xmx1024m -XX:MaxPermSize=512m -Dorg.jboss.byteman.verbose -Djboss.modules.system.pkgs=org.jboss.byteman -Dorg.jboss.byteman.transform.all -javaagent:/home/jenkins/workspace/narayana-codeCoverage/XTS/localjunit/crash-recovery-tests/target/lib/byteman.jar=script:target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm,boot:target/lib/byteman.jar,listener:true isIPv6: false Deleting: /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/tx-object-store remove tx-object-store: /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/tx-object-store remove /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/content/75 remove /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/content/d8 copy /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/docs/examples/configs/standalone-xts.xml to /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/configuration/standalone-xts.xml Nov 15, 2016 4:41:31 PM com.arjuna.qa.junit.BaseCrashTest runTest INFO: Test starting, server should be down: ATSubordinateCrashDuringPrepare:subordinate.MultiParticipantPrepareAndCommitTest Nov 15, 2016 4:41:31 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController start INFO: Manual starting of a server instance with overridden configuration. New configuration: {managementAddress=127.0.0.1, javaVmArguments=-server -Xms64m -Xmx1024m -XX:MaxPermSize=512m -Dorg.jboss.byteman.verbose -Djboss.modules.system.pkgs=org.jboss.byteman -Dorg.jboss.byteman.transform.all -javaagent:/home/jenkins/workspace/narayana-codeCoverage/XTS/localjunit/crash-recovery-tests/target/lib/byteman.jar=script:target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm,boot:target/lib/byteman.jar,listener:true -Dorg.jboss.jbossts.xts.servicetests.XTSServiceTestName=org.jboss.jbossts.xts.servicetests.test.at.subordinate.MultiParticipantPrepareAndCommitTest, startupTimeoutInSeconds=60, serverConfig=standalone-xts.xml} Nov 15, 2016 4:41:31 PM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal WARNING: Bundles path is deprecated and no longer used. Nov 15, 2016 4:41:31 PM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal INFO: Starting container with: [/usr/lib/jvm/java-1.8.0-openjdk/bin/java, -D[Standalone], -server, -Xms64m, -Xmx1024m, -XX:MaxPermSize=512m, -Dorg.jboss.byteman.verbose, -Djboss.modules.system.pkgs=org.jboss.byteman, -Dorg.jboss.byteman.transform.all, -javaagent:/home/jenkins/workspace/narayana-codeCoverage/XTS/localjunit/crash-recovery-tests/target/lib/byteman.jar=script:target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm,boot:target/lib/byteman.jar,listener:true, -Dorg.jboss.jbossts.xts.servicetests.XTSServiceTestName=org.jboss.jbossts.xts.servicetests.test.at.subordinate.MultiParticipantPrepareAndCommitTest, -ea, -Djboss.home.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT, -Dorg.jboss.boot.log.file=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/log/server.log, -Dlogging.configuration=file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/configuration/logging.properties, -jar, /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/jboss-modules.jar, -mp, /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/modules, org.jboss.as.standalone, -Djboss.home.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT, -Djboss.server.base.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone, -Djboss.server.log.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/log, -Djboss.server.config.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/configuration, -c=standalone-xts.xml] OpenJDK 64-Bit Server VM warning: ignoring option MaxPermSize=512m; support was removed in 8.0 TransformListener() : accepting requests on localhost:9091 16:41:31,887 INFO [org.jboss.modules] (main) JBoss Modules version 1.6.0.Beta3 16:41:32,074 INFO [org.jboss.msc] (main) JBoss MSC version 1.2.7.Final 16:41:32,173 INFO [org.jboss.as] (MSC service thread 1-6) WFLYSRV0049: WildFly Core 3.0.0.Alpha12 "Kenny" starting 16:41:32,321 INFO [org.jboss.as.domain.management] (MSC service thread 1-8) WFLYDM0136: Registered OpenSSL provider 16:41:33,042 INFO [org.jboss.as.controller.management-deprecated] (ServerService Thread Pool -- 13) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/subsystem=undertow/server=default-server/https-listener=https' 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:41:33,066 INFO [org.jboss.as.repository] (ServerService Thread Pool -- 25) WFLYDR0001: Content added at location /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/content/75/4c26bdb7730dd705b361ba38f432c0cfa843bd/content 16:41:33,084 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http) 16:41:33,095 INFO [org.xnio] (MSC service thread 1-4) XNIO version 3.4.1.Final 16:41:33,101 INFO [org.xnio.nio] (MSC service thread 1-4) XNIO NIO Implementation Version 3.4.1.Final 16:41:33,119 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 40) WFLYCLINF0001: Activating Infinispan subsystem. 16:41:33,121 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 39) WFLYIO001: Worker 'default' has auto-configured to 48 core threads with 384 task threads based on your 24 available processors 16:41:33,132 INFO [org.jboss.as.jsf] (ServerService Thread Pool -- 47) WFLYJSF0007: Activated the following JSF Implementations: [main] 16:41:33,135 INFO [org.jboss.as.naming] (ServerService Thread Pool -- 51) WFLYNAM0001: Activating Naming Subsystem 16:41:33,135 INFO [org.wildfly.iiop.openjdk] (ServerService Thread Pool -- 41) WFLYIIOP0001: Activating IIOP Subsystem 16:41:33,135 WARN [org.jboss.as.txn] (ServerService Thread Pool -- 59) WFLYTX0013: Node identifier property is set to the default value. Please make sure it is unique. 16:41:33,139 INFO [org.jboss.as.security] (ServerService Thread Pool -- 58) WFLYSEC0002: Activating Security Subsystem 16:41:33,139 INFO [org.jboss.as.webservices] (ServerService Thread Pool -- 61) WFLYWS0002: Activating WebServices Extension 16:41:33,150 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 35) WFLYJCA0004: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3) 16:41:33,152 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-8) WFLYJCA0018: Started Driver service with driver-name = h2 16:41:33,155 INFO [org.jboss.as.connector] (MSC service thread 1-5) WFLYJCA0009: Starting JCA Subsystem (WildFly/IronJacamar 1.3.4.Final) 16:41:33,158 INFO [org.jboss.as.security] (MSC service thread 1-8) WFLYSEC0001: Current PicketBox version=5.0.0.Alpha3 16:41:33,185 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : possible trigger for rule create participant deletes counter in class org.jboss.jbossts.XTSService 16:41:33,191 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0003: Undertow 1.4.4.Final starting 16:41:33,196 INFO [org.jboss.remoting] (MSC service thread 1-4) JBoss Remoting version 5.0.0.Beta7 16:41:33,201 INFO [org.jboss.as.mail.extension] (MSC service thread 1-8) WFLYMAIL0001: Bound mail session [java:jboss/mail/Default] 16:41:33,201 INFO [org.jboss.as.naming] (MSC service thread 1-1) WFLYNAM0003: Starting Naming Service 16:41:33,201 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : possible trigger for rule reset periodic recovery wait time in class com.arjuna.ats.arjuna.common.RecoveryEnvironmentBean 16:41:33,220 INFO [stdout] (MSC service thread 1-2) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.common.RecoveryEnvironmentBean.getPeriodicRecoveryPeriod() int for rule reset periodic recovery wait time 16:41:33,221 INFO [stdout] (ServerService Thread Pool -- 63) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.XTSService.start() void for rule create participant deletes counter 16:41:33,237 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : inserted trigger for create participant deletes counter in class org.jboss.jbossts.XTSService 16:41:33,238 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : possible trigger for rule open trace file in class org.jboss.jbossts.XTSService 16:41:33,239 INFO [stdout] (ServerService Thread Pool -- 63) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.XTSService.start() void for rule open trace file 16:41:33,241 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : inserted trigger for reset periodic recovery wait time in class com.arjuna.ats.arjuna.common.RecoveryEnvironmentBean 16:41:33,243 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : inserted trigger for open trace file in class org.jboss.jbossts.XTSService 16:41:33,260 INFO [org.wildfly.security] (MSC service thread 1-4) ELY00001: WildFly Elytron version 1.1.0.Beta13 16:41:33,278 INFO [org.jboss.as.ejb3] (MSC service thread 1-1) WFLYEJB0481: Strict pool slsb-strict-max-pool is using a max instance size of 384 (per class), which is derived from thread worker pool sizing. 16:41:33,278 INFO [org.jboss.as.ejb3] (MSC service thread 1-7) WFLYEJB0482: Strict pool mdb-strict-max-pool is using a max instance size of 96 (per class), which is derived from the number of CPUs on this host. 16:41:33,284 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 60) WFLYUT0014: Creating file handler for path '/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]'] 16:41:33,286 INFO [stdout] (MSC service thread 1-2) Rule.execute called for reset periodic recovery wait time_0 16:41:33,289 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0012: Started server default-server. 16:41:33,289 INFO [stdout] (MSC service thread 1-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:33,289 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0018: Host default-host starting 16:41:33,289 INFO [stdout] (MSC service thread 1-2) calling activated() for helper class org.jboss.byteman.rule.helper.Helper 16:41:33,290 INFO [stdout] (MSC service thread 1-2) Default helper activated 16:41:33,291 INFO [stdout] (MSC service thread 1-2) calling installed(reset periodic recovery wait time) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:33,291 INFO [stdout] (MSC service thread 1-2) Installed rule using default helper : reset periodic recovery wait time 16:41:33,291 INFO [stdout] (MSC service thread 1-2) reset periodic recovery wait time execute 16:41:33,295 INFO [stdout] (MSC service thread 1-2) caught ReturnException 16:41:33,322 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : possible trigger for rule trace TX save at prepare in class com.arjuna.ats.arjuna.coordinator.BasicAction 16:41:33,351 INFO [stdout] (MSC service thread 1-2) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.coordinator.BasicAction.prepare(boolean) int for rule trace TX save at prepare 16:41:33,355 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : inserted trigger for trace TX save at prepare in class com.arjuna.ats.arjuna.coordinator.BasicAction 16:41:33,356 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:8080 16:41:33,360 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : possible trigger for rule trace remove committed state and exit JVM in class com.arjuna.ats.arjuna.coordinator.BasicAction 16:41:33,379 INFO [stdout] (MSC service thread 1-2) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.coordinator.BasicAction.updateState() void for rule trace remove committed state and exit JVM 16:41:33,382 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : inserted trigger for trace remove committed state and exit JVM in class com.arjuna.ats.arjuna.coordinator.BasicAction 16:41:33,386 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : possible trigger for rule trace remove committed state in class com.arjuna.ats.arjuna.coordinator.BasicAction 16:41:33,424 INFO [stdout] (MSC service thread 1-2) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.coordinator.BasicAction.updateState() void for rule trace remove committed state 16:41:33,425 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : inserted trigger for trace remove committed state in class com.arjuna.ats.arjuna.coordinator.BasicAction 16:41:33,612 INFO [org.wildfly.iiop.openjdk] (MSC service thread 1-8) WFLYIIOP0009: CORBA ORB Service started 16:41:33,636 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-4) WFLYJCA0001: Bound data source [java:jboss/datasources/ExampleDS] 16:41:33,646 INFO [org.jboss.as.patching] (MSC service thread 1-7) WFLYPAT0050: WildFly cumulative patch ID is: base, one-off patches include: none 16:41:33,663 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-6) WFLYDS0013: Started FileSystemDeploymentService for directory /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/deployments 16:41:33,668 INFO [org.jboss.as.server.deployment] (MSC service thread 1-6) WFLYSRV0027: Starting deployment of "restat-web-5.4.1.Final-SNAPSHOT.war" (runtime-name: "restat-web-5.4.1.Final-SNAPSHOT.war") 16:41:33,700 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221000: live Message Broker is starting with configuration Broker Configuration (clustered=false,journalDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/journal,bindingsDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/bindings,largeMessagesDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/largemessages,pagingDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/paging) 16:41:33,740 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221012: Using AIO Journal 16:41:33,873 INFO [org.infinispan.factories.GlobalComponentRegistry] (MSC service thread 1-1) ISPN000128: Infinispan version: Infinispan 'Chakra' 8.2.4.Final 16:41:33,959 WARN [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0088: HTTP/2 will not be enabled as TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 is not enabled. You may need to install JCE to enable strong ciphers to allow HTTP/2 to function. 16:41:33,981 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0006: Undertow HTTPS listener https listening on 127.0.0.1:8443 16:41:34,003 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-1) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,004 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,004 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,004 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,004 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,005 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,005 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,005 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,005 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,007 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-1) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,007 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-1) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,007 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-4) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,007 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-1) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,008 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-4) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,055 INFO [org.jboss.ws.common.management] (MSC service thread 1-5) JBWS022052: Starting JBossWS 5.1.5.Final (Apache CXF 3.1.8) 16:41:34,057 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-c11 16:41:34,057 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-t11-participant 16:41:34,057 INFO [org.jboss.as.webservices] (MSC service thread 1-3) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-t11-client 16:41:34,057 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-t11-coordinator 16:41:34,060 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-server]. Adding protocol support for: CORE 16:41:34,063 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-amqp-protocol]. Adding protocol support for: AMQP 16:41:34,064 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-hornetq-protocol]. Adding protocol support for: HORNETQ 16:41:34,065 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-stomp-protocol]. Adding protocol support for: STOMP 16:41:34,102 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=TerminationParticipantService address=http://localhost:8080/ws-t11-client/TerminationParticipantService implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationParticipantPortTypeImpl serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantService portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:34,102 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-5) JBWS024061: Adding service endpoint metadata: id=ActivationService address=http://localhost:8080/ws-c11/ActivationService implementor=com.arjuna.webservices11.wscoor.sei.ActivationPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService portName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:34,102 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CompletionCoordinatorService address=http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorService implementor=com.arjuna.webservices11.wsat.sei.CompletionCoordinatorPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorService portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:34,102 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-6) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithCoordinatorCompletionParticipantService address=http://localhost:8080/ws-t11-participant/BusinessAgreementWithCoordinatorCompletionParticipantService implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionParticipantPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantService portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:34,102 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=CompletionInitiatorService address=http://localhost:8080/ws-t11-client/CompletionInitiatorService implementor=com.arjuna.webservices11.wsat.sei.CompletionInitiatorPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorService portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:34,103 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=TerminationCoordinatorService address=http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorService implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorPortTypeImpl serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorService portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:34,103 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-6) JBWS024061: Adding service endpoint metadata: id=ParticipantService address=http://localhost:8080/ws-t11-participant/ParticipantService implementor=com.arjuna.webservices11.wsat.sei.ParticipantPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:34,103 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-5) JBWS024061: Adding service endpoint metadata: id=RegistrationService address=http://localhost:8080/ws-c11/RegistrationService implementor=com.arjuna.webservices11.wscoor.sei.RegistrationPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService portName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:34,103 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-6) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithParticipantCompletionParticipantService address=http://localhost:8080/ws-t11-participant/BusinessAgreementWithParticipantCompletionParticipantService implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantService portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:34,103 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=TerminationCoordinatorRPCService address=http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorRPCService implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorRPCPortTypeImpl serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypeImplService portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypePort annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:34,103 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithCoordinatorCompletionCoordinatorService address=http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithCoordinatorCompletionCoordinatorService implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorService portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:34,103 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithParticipantCompletionCoordinatorService address=http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithParticipantCompletionCoordinatorService implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorService portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:34,104 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CoordinatorService address=http://localhost:8080/ws-t11-coordinator/CoordinatorService implementor=com.arjuna.webservices11.wsat.sei.CoordinatorPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:34,104 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CompletionCoordinatorRPCService address=http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorRPCService implementor=com.arjuna.webservices11.wsat.sei.CompletionCoordinatorRPCPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCService portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:34,151 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) WFLYSRV0018: Deployment "deployment.restat-web-5.4.1.Final-SNAPSHOT.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice. 16:41:34,152 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) WFLYSRV0018: Deployment "deployment.restat-web-5.4.1.Final-SNAPSHOT.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice. 16:41:34,270 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-4) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor acceptor 16:41:34,270 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-7) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor-throughput acceptor 16:41:34,270 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-8) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor acceptor 16:41:34,271 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-8) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor-throughput acceptor 16:41:34,302 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-2) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,303 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-2) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:34,338 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221007: Server is now live 16:41:34,338 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221001: Apache ActiveMQ Artemis Message Broker version 1.5.0 [default, nodeID=ef9290cb-ab4d-11e6-b97f-0242ac110007] 16:41:34,340 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 69) AMQ221003: Deploying queue jms.queue.DLQ 16:41:34,374 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221003: Deploying queue jms.queue.ExpiryQueue 16:41:34,390 INFO [org.wildfly.extension.messaging-activemq] (ServerService Thread Pool -- 67) WFLYMSGAMQ0002: Bound messaging object to jndi name java:/ConnectionFactory 16:41:34,391 INFO [org.wildfly.extension.messaging-activemq] (ServerService Thread Pool -- 68) WFLYMSGAMQ0002: Bound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory 16:41:34,435 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-4) WFLYJCA0007: Registered connection factory java:/JmsXA 16:41:34,474 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 65) WFLYUT0021: Registered web context: '/rest-tx' for server 'default-server' 16:41:34,475 INFO [org.apache.activemq.artemis.ra] (MSC service thread 1-4) Resource adaptor started 16:41:34,475 INFO [org.jboss.as.connector.services.resourceadapters.ResourceAdapterActivatorService$ResourceAdapterActivator] (MSC service thread 1-4) IJ020002: Deployed: file://RaActivatoractivemq-ra 16:41:34,477 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-2) WFLYJCA0002: Bound JCA ConnectionFactory [java:/JmsXA] 16:41:34,477 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-7) WFLYMSGAMQ0002: Bound messaging object to jndi name java:jboss/DefaultJMSConnectionFactory 16:41:34,536 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-5) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService from class com.arjuna.webservices11.wscoor.sei.ActivationPortTypeImpl 16:41:34,536 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantService from class com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationParticipantPortType 16:41:34,536 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-6) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantService from class org.oasis_open.docs.ws_tx.wsba._2006._06.BusinessAgreementWithCoordinatorCompletionParticipantPortType 16:41:34,536 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorService from class com.arjuna.webservices11.wsat.sei.CompletionCoordinatorPortTypeImpl 16:41:34,949 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/ws-t11-client/TerminationParticipantService 16:41:34,949 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-6) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/BusinessAgreementWithCoordinatorCompletionParticipantService 16:41:34,949 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-5) Setting the server's publish address to be http://localhost:8080/ws-c11/ActivationService 16:41:34,949 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorService 16:41:35,055 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CompletionCoordinatorService.wsdl 16:41:35,056 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-5) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-c11.deployment/ActivationService.wsdl 16:41:35,056 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorService from class com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationCoordinatorPortType 16:41:35,057 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-5) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from class com.arjuna.webservices11.wscoor.sei.RegistrationPortTypeImpl 16:41:35,057 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-client.deployment/TerminationParticipantService.wsdl 16:41:35,058 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorService from class com.arjuna.webservices11.wsat.sei.CompletionInitiatorPortTypeImpl 16:41:35,060 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-6) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/BusinessAgreementWithCoordinatorCompletionParticipantService.wsdl 16:41:35,060 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-6) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from class com.arjuna.webservices11.wsat.sei.ParticipantPortTypeImpl 16:41:35,065 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorService 16:41:35,070 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/ws-t11-client/CompletionInitiatorService 16:41:35,073 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-6) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/ParticipantService 16:41:35,073 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/TerminationCoordinatorService.wsdl 16:41:35,074 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypeImplService from class com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorRPCPortTypeImpl 16:41:35,075 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-5) Setting the server's publish address to be http://localhost:8080/ws-c11/RegistrationService 16:41:35,076 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorRPCService 16:41:35,078 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-client.deployment/CompletionInitiatorService.wsdl 16:41:35,079 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-6) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/ParticipantService.wsdl 16:41:35,080 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-6) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl 16:41:35,080 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/TerminationCoordinatorRPCPortTypeImplService.wsdl 16:41:35,081 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl 16:41:35,083 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-5) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-c11.deployment/RegistrationService.wsdl 16:41:35,085 INFO [org.jboss.as.webservices] (MSC service thread 1-3) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-client.deployment".CompletionInitiatorService 16:41:35,085 INFO [org.jboss.as.webservices] (MSC service thread 1-8) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-client.deployment".TerminationParticipantService 16:41:35,086 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-6) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/BusinessAgreementWithParticipantCompletionParticipantService 16:41:35,086 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint."ws-c11.deployment".ActivationService 16:41:35,086 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0003: Starting service jboss.ws.endpoint."ws-c11.deployment".RegistrationService 16:41:35,091 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-t11-client 16:41:35,091 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-c11 16:41:35,094 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-6) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/BusinessAgreementWithParticipantCompletionParticipantService.wsdl 16:41:35,095 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0021: Registered web context: '/ws-t11-client' for server 'default-server' 16:41:35,095 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0021: Registered web context: '/ws-c11' for server 'default-server' 16:41:35,098 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithParticipantCompletionParticipantService 16:41:35,098 INFO [org.jboss.as.webservices] (MSC service thread 1-8) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithCoordinatorCompletionParticipantService 16:41:35,098 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".ParticipantService 16:41:35,098 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithCoordinatorCompletionCoordinatorService 16:41:35,099 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-t11-participant 16:41:35,099 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0021: Registered web context: '/ws-t11-participant' for server 'default-server' 16:41:35,106 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/BusinessAgreementWithCoordinatorCompletionCoordinatorService.wsdl 16:41:35,107 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl 16:41:35,112 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithParticipantCompletionCoordinatorService 16:41:35,120 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/BusinessAgreementWithParticipantCompletionCoordinatorService.wsdl 16:41:35,120 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from class com.arjuna.webservices11.wsat.sei.CoordinatorPortTypeImpl 16:41:35,123 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CoordinatorService 16:41:35,129 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CoordinatorService.wsdl 16:41:35,130 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCService from class com.arjuna.webservices11.wsat.sei.CompletionCoordinatorRPCPortTypeImpl 16:41:35,132 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorRPCService 16:41:35,138 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CompletionCoordinatorRPCService.wsdl 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorRPCService 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-3) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CoordinatorService 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorService 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithParticipantCompletionCoordinatorService 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithCoordinatorCompletionCoordinatorService 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorRPCService 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-8) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorService 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-t11-coordinator 16:41:35,143 INFO [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0021: Registered web context: '/ws-t11-coordinator' for server 'default-server' 16:41:35,147 INFO [stdout] (MSC service thread 1-8) Rule.execute called for open trace file_2 16:41:35,148 INFO [stdout] (MSC service thread 1-8) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:35,148 INFO [stdout] (MSC service thread 1-8) calling installed(open trace file) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:35,148 INFO [stdout] (MSC service thread 1-8) Installed rule using default helper : open trace file 16:41:35,148 INFO [stdout] (MSC service thread 1-8) open trace file execute 16:41:35,149 INFO [stdout] (MSC service thread 1-8) Rule.execute called for create participant deletes counter_1 16:41:35,149 INFO [stdout] (MSC service thread 1-8) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:35,149 INFO [stdout] (MSC service thread 1-8) calling installed(create participant deletes counter) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:35,149 INFO [stdout] (MSC service thread 1-8) Installed rule using default helper : create participant deletes counter 16:41:35,149 INFO [stdout] (MSC service thread 1-8) create participant deletes counter execute 16:41:35,159 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : possible trigger for rule trace Participant send rollback in class com.arjuna.wst11.messaging.CoordinatorProcessorImpl 16:41:35,160 INFO [stdout] (MSC service thread 1-8) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.CoordinatorProcessorImpl.prepared(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace Participant send rollback 16:41:35,163 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : inserted trigger for trace Participant send rollback in class com.arjuna.wst11.messaging.CoordinatorProcessorImpl 16:41:35,179 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate coordinator close in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator 16:41:35,180 INFO [stdout] (MSC service thread 1-8) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator.rollback() void for rule trace subordinate coordinator close 16:41:35,181 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate coordinator close in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator 16:41:35,182 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate coordinator prepare in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator 16:41:35,182 INFO [stdout] (MSC service thread 1-8) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator.prepare() int for rule trace subordinate coordinator prepare 16:41:35,183 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate coordinator prepare in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator 16:41:35,184 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate coordinator rollback 2 in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator 16:41:35,185 INFO [stdout] (MSC service thread 1-8) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator.rollback() void for rule trace subordinate coordinator rollback 2 16:41:35,186 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate coordinator rollback 2 in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator 16:41:35,197 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : possible trigger for rule trace delete participant and exit JVM in class org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple 16:41:35,197 INFO [stdout] (MSC service thread 1-8) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple.deleteParticipantRecoveryRecord(java.lang.String) boolean for rule trace delete participant and exit JVM 16:41:35,198 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : inserted trigger for trace delete participant and exit JVM in class org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple 16:41:35,221 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-4) ARJUNA033013: OutboundBridgeRecoveryManager starting 16:41:35,221 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-8) ARJUNA033006: InboundBridgeRecoveryManager starting 16:41:35,235 INFO [org.jboss.as.server] (ServerService Thread Pool -- 36) WFLYSRV0010: Deployed "restat-web-5.4.1.Final-SNAPSHOT.war" (runtime-name : "restat-web-5.4.1.Final-SNAPSHOT.war") 16:41:35,301 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:9990/management 16:41:35,301 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:9990 16:41:35,301 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Core 3.0.0.Alpha12 "Kenny" started in 3688ms - Started 508 of 752 services (451 services are lazy, passive or on-demand) 16:41:35,378 INFO [org.jboss.as.repository] (management-handler-thread - 1) WFLYDR0001: Content added at location /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/content/67/eecc8af4663400c3ea658c818ff35814a26f3a/content 16:41:35,380 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) WFLYSRV0027: Starting deployment of "xtstest.war" (runtime-name: "xtstest.war") 16:41:35,661 WARN [org.jboss.as.dependency.private] (MSC service thread 1-4) WFLYSRV0018: Deployment "deployment.xtstest.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice. 16:41:35,675 INFO [org.jboss.weld.deployer] (MSC service thread 1-6) WFLYWELD0003: Processing weld deployment xtstest.war 16:41:35,699 INFO [org.hibernate.validator.internal.util.Version] (MSC service thread 1-6) HV000001: Hibernate Validator 5.2.4.Final 16:41:35,830 INFO [org.jboss.weld.Version] (MSC service thread 1-3) WELD-000900: 2.4.0 (Final) 16:41:35,837 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_One address=http://localhost:8080/xtstest/xtsservicetest1 implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl wsdlLocationOverride=null mtomEnabled=false 16:41:35,838 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_Two address=http://localhost:8080/xtstest/xtsservicetest2 implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl wsdlLocationOverride=null mtomEnabled=false 16:41:35,838 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_Three address=http://localhost:8080/xtstest/xtsservicetest3 implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl wsdlLocationOverride=null mtomEnabled=false 16:41:35,838 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Subordinate_Service_One address=http://localhost:8080/xtstest/xtssubordinateservicetest1 implementor=org.jboss.jbossts.xts.servicetests.service.subordinate.XTSSubordinateServiceTestPortTypeImpl serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl wsdlLocationOverride=null mtomEnabled=false 16:41:35,848 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl 16:41:35,881 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest1 16:41:35,887 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl 16:41:35,888 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl 16:41:35,890 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest2 16:41:35,892 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl 16:41:35,893 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl 16:41:35,894 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest3 16:41:35,897 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl 16:41:35,897 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl 16:41:35,898 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/xtstest/xtssubordinateservicetest1 16:41:35,902 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl 16:41:35,909 INFO [org.jboss.as.webservices] (MSC service thread 1-3) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_One 16:41:35,910 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Two 16:41:35,910 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Three 16:41:35,910 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Subordinate_Service_One 16:41:35,913 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:35,914 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:36,099 WARN [org.jboss.weld.Bootstrap] (MSC service thread 1-1) WELD-000169: Jandex cannot distinguish inner and static nested classes! Update Jandex to 2.0.3.Final version or newer to improve scanning performance. 16:41:36,386 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (ServerService Thread Pool -- 13) Starting XTSServiceTestRunner 16:41:36,386 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (ServerService Thread Pool -- 13) Starting XTS Service Test org.jboss.jbossts.xts.servicetests.test.at.subordinate.MultiParticipantPrepareAndCommitTest 16:41:36,386 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (ServerService Thread Pool -- 13) Started XTSServiceTestRunner 16:41:36,394 INFO [javax.enterprise.resource.webcontainer.jsf.config] (ServerService Thread Pool -- 13) Initializing Mojarra 2.2.13.SP1 20160303-1204 for context '/xtstest' 16:41:36,784 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 13) WFLYUT0021: Registered web context: '/xtstest' for server 'default-server' 16:41:36,811 INFO [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0010: Deployed "xtstest.war" (runtime-name : "xtstest.war") Nov 15, 2016 4:41:36 PM org.jboss.remotingjmx.Util warnDeprecated WARN: The protocol 'http-remoting-jmx' is deprecated, instead you should use 'remote+http'. Nov 15, 2016 4:41:36 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController kill INFO: Hard killing of a server instance Nov 15, 2016 4:41:36 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: waiting for byteman to kill the server Nov 15, 2016 4:41:36 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' 16:41:41,421 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Thread-123) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-activation-binding.wsdl 16:41:41,431 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Thread-123) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-activation-binding.wsdl 16:41:41,785 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Thread-123) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl 16:41:41,817 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Thread-123) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: vfs:/content/xtstest.war/WEB-INF/classes/org/jboss/jbossts/xts/servicetests/generated/wsdl/xtsservicetests.wsdl 16:41:41,862 INFO [stdout] (default task-3) service /xtsservicetest1 16:41:41,862 INFO [stdout] (default task-3) command enlistDurable 16:41:41,862 INFO [stdout] (default task-3) command prepare 16:41:41,862 INFO [stdout] (default task-3) command commit 16:41:41,880 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (default task-3) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl 16:41:41,901 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace Coordinator engine create in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:41:41,902 INFO [stdout] (default task-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.(java.lang.String,boolean,javax.xml.ws.wsaddressing.W3CEndpointReference,boolean,com.arjuna.webservices11.wsat.State) void for rule trace Coordinator engine create 16:41:41,911 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace Coordinator engine create in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:41:41,912 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive Participant aborted in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:41:41,913 INFO [stdout] (default task-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.aborted(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive Participant aborted 16:41:41,918 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive Participant aborted in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:41:41,919 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive participant prepared in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:41:41,920 INFO [stdout] (default task-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.prepared(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive participant prepared 16:41:41,926 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive participant prepared in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:41:41,927 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send participant prepare in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:41:41,928 INFO [stdout] (default task-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.prepare() com.arjuna.webservices11.wsat.State for rule trace send participant prepare 16:41:41,933 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace send participant prepare in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:41:41,934 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send Participant rollback in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:41:41,935 INFO [stdout] (default task-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.rollback() com.arjuna.webservices11.wsat.State for rule trace send Participant rollback 16:41:41,940 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace send Participant rollback in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:41:41,942 INFO [stdout] (default task-4) Rule.execute called for trace Coordinator engine create_11 16:41:41,943 INFO [stdout] (default task-4) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:41,943 INFO [stdout] (default task-4) calling installed(trace Coordinator engine create) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:41,943 INFO [stdout] (default task-4) Installed rule using default helper : trace Coordinator engine create 16:41:41,943 INFO [stdout] (default task-4) trace Coordinator engine create execute 16:41:41,955 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule trace Participant create in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:41:41,956 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.(com.arjuna.wst.Participant,java.lang.String,com.arjuna.webservices11.wsat.State,javax.xml.ws.wsaddressing.W3CEndpointReference,boolean) void for rule trace Participant create 16:41:41,968 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for trace Participant create in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:41:41,969 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive participant prepare in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:41:41,970 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.prepare(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive participant prepare 16:41:41,976 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive participant prepare in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:41:41,978 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send Participant prepared in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:41:41,984 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.sendPrepared(boolean) void for rule trace send Participant prepared 16:41:41,984 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for trace send Participant prepared in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:41:41,986 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive Participant rollback in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:41:41,986 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.rollback(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive Participant rollback 16:41:41,993 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive Participant rollback in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:41:41,994 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send Participant aborted in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:41:42,000 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.sendAborted() void for rule trace send Participant aborted 16:41:42,000 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for trace send Participant aborted in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:41:42,002 INFO [stdout] (default task-3) Rule.execute called for trace Participant create_16 16:41:42,002 INFO [stdout] (default task-3) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:42,002 INFO [stdout] (default task-3) calling installed(trace Participant create) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:42,002 INFO [stdout] (default task-3) Installed rule using default helper : trace Participant create 16:41:42,002 INFO [stdout] (default task-3) trace Participant create execute 16:41:42,029 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate participant stub rollback in class com.arjuna.wst11.stub.SubordinateDurable2PCStub 16:41:42,030 INFO [stdout] (default task-5) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.stub.SubordinateDurable2PCStub.rollback() void for rule trace subordinate participant stub rollback 16:41:42,031 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate participant stub rollback in class com.arjuna.wst11.stub.SubordinateDurable2PCStub 16:41:42,031 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate participant stub prepare in class com.arjuna.wst11.stub.SubordinateDurable2PCStub 16:41:42,031 INFO [stdout] (default task-5) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.stub.SubordinateDurable2PCStub.prepare() com.arjuna.wst.Vote for rule trace subordinate participant stub prepare 16:41:42,032 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate participant stub prepare in class com.arjuna.wst11.stub.SubordinateDurable2PCStub 16:41:42,032 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate participant stub prepare 2 in class com.arjuna.wst11.stub.SubordinateDurable2PCStub 16:41:42,033 INFO [stdout] (default task-5) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.stub.SubordinateDurable2PCStub.prepare() com.arjuna.wst.Vote for rule trace subordinate participant stub prepare 2 16:41:42,033 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate participant stub prepare 2 in class com.arjuna.wst11.stub.SubordinateDurable2PCStub 16:41:42,034 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate participant stub rollback forward in class com.arjuna.wst11.stub.SubordinateDurable2PCStub 16:41:42,034 INFO [stdout] (default task-5) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.stub.SubordinateDurable2PCStub.rollback() void for rule trace subordinate participant stub rollback forward 16:41:42,035 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate participant stub rollback forward in class com.arjuna.wst11.stub.SubordinateDurable2PCStub 16:41:42,036 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate participant stub rollback with no coordinator in class com.arjuna.wst11.stub.SubordinateDurable2PCStub 16:41:42,036 INFO [stdout] (default task-5) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.stub.SubordinateDurable2PCStub.rollback() void for rule trace subordinate participant stub rollback with no coordinator 16:41:42,037 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate participant stub rollback with no coordinator in class com.arjuna.wst11.stub.SubordinateDurable2PCStub 16:41:42,037 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate participant stub rollback with unactivated coordinator in class com.arjuna.wst11.stub.SubordinateDurable2PCStub 16:41:42,038 INFO [stdout] (default task-5) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.stub.SubordinateDurable2PCStub.rollback() void for rule trace subordinate participant stub rollback with unactivated coordinator 16:41:42,038 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate participant stub rollback with unactivated coordinator in class com.arjuna.wst11.stub.SubordinateDurable2PCStub 16:41:42,039 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate participant stub rollback return in class com.arjuna.wst11.stub.SubordinateDurable2PCStub 16:41:42,039 INFO [stdout] (default task-5) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.stub.SubordinateDurable2PCStub.rollback() void for rule trace subordinate participant stub rollback return 16:41:42,040 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate participant stub rollback return in class com.arjuna.wst11.stub.SubordinateDurable2PCStub 16:41:42,055 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (default task-5) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl 16:41:42,071 INFO [stdout] (default task-6) Rule.execute called for trace Coordinator engine create_11 16:41:42,072 INFO [stdout] (default task-6) trace Coordinator engine create execute 16:41:42,081 INFO [stdout] (default task-5) Rule.execute called for trace Participant create_16 16:41:42,082 INFO [stdout] (default task-5) trace Participant create execute 16:41:42,091 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (default task-5) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl 16:41:42,104 INFO [stdout] (default task-7) Rule.execute called for trace Coordinator engine create_11 16:41:42,105 INFO [stdout] (default task-7) trace Coordinator engine create execute 16:41:42,112 INFO [stdout] (default task-5) Rule.execute called for trace Participant create_16 16:41:42,112 INFO [stdout] (default task-5) trace Participant create execute 16:41:42,116 INFO [stdout] (default task-5) service /xtssubordinateservicetest1 16:41:42,116 INFO [stdout] (default task-5) command enlistDurable 16:41:42,116 INFO [stdout] (default task-5) command prepare 16:41:42,116 INFO [stdout] (default task-5) command commit 16:41:42,128 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (default task-5) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl 16:41:42,140 INFO [stdout] (default task-8) Rule.execute called for trace Coordinator engine create_11 16:41:42,141 INFO [stdout] (default task-8) trace Coordinator engine create execute 16:41:42,148 INFO [stdout] (default task-5) Rule.execute called for trace Participant create_16 16:41:42,148 INFO [stdout] (default task-5) trace Participant create execute 16:41:42,169 INFO [stdout] (default task-9) service /xtssubordinateservicetest1 16:41:42,170 INFO [stdout] (default task-9) command enlistDurable 16:41:42,170 INFO [stdout] (default task-9) command prepare 16:41:42,170 INFO [stdout] (default task-9) command commit 16:41:42,181 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (default task-9) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl 16:41:42,193 INFO [stdout] (default task-10) Rule.execute called for trace Coordinator engine create_11 16:41:42,193 INFO [stdout] (default task-10) trace Coordinator engine create execute 16:41:42,199 INFO [stdout] (default task-9) Rule.execute called for trace Participant create_16 16:41:42,199 INFO [stdout] (default task-9) trace Participant create execute 16:41:42,220 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Thread-123) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-completion-coordinator-binding.wsdl 16:41:42,254 INFO [stdout] (TaskWorker-1) Rule.execute called for trace send participant prepare_14 16:41:42,255 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:42,255 INFO [stdout] (TaskWorker-1) calling installed(trace send participant prepare) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:42,255 INFO [stdout] (TaskWorker-1) Installed rule using default helper : trace send participant prepare 16:41:42,255 INFO [stdout] (TaskWorker-1) trace send participant prepare execute 16:41:42,255 INFO [stdout] (TaskWorker-1) rule.debug{trace send participant prepare} : prepare sent for Coordinator engine V0:ffffac110007:-3ffa9bb3:582b3abd:1b 16:41:42,274 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl 16:41:42,300 INFO [stdout] (TaskWorker-2) Rule.execute called for trace receive participant prepare_17 16:41:42,301 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:42,301 INFO [stdout] (TaskWorker-2) calling installed(trace receive participant prepare) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:42,301 INFO [stdout] (TaskWorker-2) Installed rule using default helper : trace receive participant prepare 16:41:42,301 INFO [stdout] (TaskWorker-2) trace receive participant prepare execute 16:41:42,301 INFO [stdout] (TaskWorker-2) rule.debug{trace receive participant prepare} : prepare received for participant org.jboss.jbossts.xts.at.subordinate.participant.0:ffffac110007:-3ffa9bb3:582b3abd:19_V 16:41:42,302 INFO [stdout] (TaskWorker-2) Rule.execute called for trace send Participant prepared_18 16:41:42,303 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:42,303 INFO [stdout] (TaskWorker-2) calling installed(trace send Participant prepared) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:42,303 INFO [stdout] (TaskWorker-2) Installed rule using default helper : trace send Participant prepared 16:41:42,303 INFO [stdout] (TaskWorker-2) trace send Participant prepared execute 16:41:42,303 INFO [stdout] (TaskWorker-2) rule.debug{trace send Participant prepared} : prepared sent for Participant org.jboss.jbossts.xts.at.subordinate.participant.0:ffffac110007:-3ffa9bb3:582b3abd:19_V 16:41:42,321 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl 16:41:42,342 INFO [stdout] (TaskWorker-2) Rule.execute called for trace receive participant prepared_13 16:41:42,342 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:42,342 INFO [stdout] (TaskWorker-2) calling installed(trace receive participant prepared) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:42,342 INFO [stdout] (TaskWorker-2) Installed rule using default helper : trace receive participant prepared 16:41:42,342 INFO [stdout] (TaskWorker-2) trace receive participant prepared execute 16:41:42,342 INFO [stdout] (TaskWorker-2) rule.debug{trace receive participant prepared} : prepared received for Coordinator engine V0:ffffac110007:-3ffa9bb3:582b3abd:1b 16:41:42,343 INFO [stdout] (TaskWorker-1) Rule.execute called for trace send participant prepare_14 16:41:42,343 INFO [stdout] (TaskWorker-1) trace send participant prepare execute 16:41:42,343 INFO [stdout] (TaskWorker-1) rule.debug{trace send participant prepare} : prepare sent for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:16 16:41:42,352 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl 16:41:42,367 INFO [stdout] (TaskWorker-2) Rule.execute called for trace receive participant prepare_17 16:41:42,368 INFO [stdout] (TaskWorker-2) trace receive participant prepare execute 16:41:42,368 INFO [stdout] (TaskWorker-2) rule.debug{trace receive participant prepare} : prepare received for participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.0 16:41:42,396 INFO [stdout] (TaskWorker-2) Rule.execute called for trace send Participant prepared_18 16:41:42,396 INFO [stdout] (TaskWorker-2) trace send Participant prepared execute 16:41:42,396 INFO [stdout] (TaskWorker-2) rule.debug{trace send Participant prepared} : prepared sent for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.0 16:41:42,404 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl 16:41:42,422 INFO [stdout] (TaskWorker-2) Rule.execute called for trace receive participant prepared_13 16:41:42,422 INFO [stdout] (TaskWorker-2) trace receive participant prepared execute 16:41:42,422 INFO [stdout] (TaskWorker-2) rule.debug{trace receive participant prepared} : prepared received for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:16 16:41:42,423 INFO [stdout] (TaskWorker-1) Rule.execute called for trace send participant prepare_14 16:41:42,423 INFO [stdout] (TaskWorker-1) trace send participant prepare execute 16:41:42,423 INFO [stdout] (TaskWorker-1) rule.debug{trace send participant prepare} : prepare sent for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:1d 16:41:42,430 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl 16:41:42,445 INFO [stdout] (TaskWorker-2) Rule.execute called for trace receive participant prepare_17 16:41:42,445 INFO [stdout] (TaskWorker-2) trace receive participant prepare execute 16:41:42,446 INFO [stdout] (TaskWorker-2) rule.debug{trace receive participant prepare} : prepare received for participant org.jboss.jbossts.xts.at.subordinate.participant.0:ffffac110007:-3ffa9bb3:582b3abd:19_D 16:41:42,446 INFO [stdout] (TaskWorker-2) Rule.execute called for trace subordinate participant stub prepare_22 16:41:42,446 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:42,446 INFO [stdout] (TaskWorker-2) calling installed(trace subordinate participant stub prepare) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:42,446 INFO [stdout] (TaskWorker-2) Installed rule using default helper : trace subordinate participant stub prepare 16:41:42,446 INFO [stdout] (TaskWorker-2) trace subordinate participant stub prepare execute 16:41:42,446 INFO [stdout] (TaskWorker-2) rule.debug{trace subordinate participant stub prepare} : prepare called for pseudo-participant com.arjuna.wst11.stub.SubordinateDurable2PCStub at 422a3fd3 16:41:42,446 INFO [stdout] (TaskWorker-2) Rule.execute called for trace subordinate coordinator prepare_8 16:41:42,447 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:42,447 INFO [stdout] (TaskWorker-2) calling installed(trace subordinate coordinator prepare) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:42,447 INFO [stdout] (TaskWorker-2) Installed rule using default helper : trace subordinate coordinator prepare 16:41:42,447 INFO [stdout] (TaskWorker-2) trace subordinate coordinator prepare execute 16:41:42,447 INFO [stdout] (TaskWorker-2) rule.debug{trace subordinate coordinator prepare} : prepare for subordinate transaction 0:ffffac110007:-3ffa9bb3:582b3abd:19 16:41:42,447 INFO [stdout] (TaskWorker-2) Rule.execute called for trace send participant prepare_14 16:41:42,448 INFO [stdout] (TaskWorker-2) trace send participant prepare execute 16:41:42,448 INFO [stdout] (TaskWorker-2) rule.debug{trace send participant prepare} : prepare sent for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:20 16:41:42,456 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl 16:41:42,471 INFO [stdout] (TaskWorker-3) Rule.execute called for trace receive participant prepare_17 16:41:42,471 INFO [stdout] (TaskWorker-3) trace receive participant prepare execute 16:41:42,471 INFO [stdout] (TaskWorker-3) rule.debug{trace receive participant prepare} : prepare received for participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.1 16:41:42,706 INFO [stdout] (TaskWorker-3) Rule.execute called for trace send Participant prepared_18 16:41:42,707 INFO [stdout] (TaskWorker-3) trace send Participant prepared execute 16:41:42,707 INFO [stdout] (TaskWorker-3) rule.debug{trace send Participant prepared} : prepared sent for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.1 16:41:42,714 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-3) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl 16:41:42,729 INFO [stdout] (TaskWorker-3) Rule.execute called for trace receive participant prepared_13 16:41:42,729 INFO [stdout] (TaskWorker-3) trace receive participant prepared execute 16:41:42,729 INFO [stdout] (TaskWorker-3) rule.debug{trace receive participant prepared} : prepared received for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:20 16:41:42,730 INFO [stdout] (TaskWorker-2) Rule.execute called for trace send participant prepare_14 16:41:42,730 INFO [stdout] (TaskWorker-2) trace send participant prepare execute 16:41:42,730 INFO [stdout] (TaskWorker-2) rule.debug{trace send participant prepare} : prepare sent for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:23 16:41:42,739 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl 16:41:42,751 INFO [stdout] (TaskWorker-3) Rule.execute called for trace receive participant prepare_17 16:41:42,751 INFO [stdout] (TaskWorker-3) trace receive participant prepare execute 16:41:42,751 INFO [stdout] (TaskWorker-3) rule.debug{trace receive participant prepare} : prepare received for participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.2 16:41:42,753 INFO [stdout] (TaskWorker-3) Rule.execute called for trace send Participant prepared_18 16:41:42,753 INFO [stdout] (TaskWorker-3) trace send Participant prepared execute 16:41:42,753 INFO [stdout] (TaskWorker-3) rule.debug{trace send Participant prepared} : prepared sent for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.2 16:41:42,759 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-3) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl 16:41:42,773 INFO [stdout] (TaskWorker-3) Rule.execute called for trace receive participant prepared_13 16:41:42,773 INFO [stdout] (TaskWorker-3) trace receive participant prepared execute 16:41:42,774 INFO [stdout] (TaskWorker-3) rule.debug{trace receive participant prepared} : prepared received for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:23 16:41:42,777 INFO [stdout] (TaskWorker-2) Rule.execute called for trace TX save at prepare_3 16:41:42,778 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:42,778 INFO [stdout] (TaskWorker-2) calling installed(trace TX save at prepare) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:42,778 INFO [stdout] (TaskWorker-2) Installed rule using default helper : trace TX save at prepare 16:41:42,778 INFO [stdout] (TaskWorker-2) trace TX save at prepare execute 16:41:42,778 INFO [stdout] (TaskWorker-2) rule.debug{trace TX save at prepare} : saved to disk transaction 0:ffffac110007:-3ffa9bb3:582b3abd:19 16:41:42,782 INFO [stdout] (TaskWorker-2) Rule.execute called for trace subordinate participant stub prepare 2_23 16:41:42,782 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:42,782 INFO [stdout] (TaskWorker-2) calling installed(trace subordinate participant stub prepare 2) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:42,782 INFO [stdout] (TaskWorker-2) Installed rule using default helper : trace subordinate participant stub prepare 2 16:41:42,782 INFO [stdout] (TaskWorker-2) trace subordinate participant stub prepare 2 execute 16:41:42,782 INFO [stdout] (TaskWorker-2) rule.debug{trace subordinate participant stub prepare 2} : JVM exit Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep '\[java\] '`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as killed by byteman scirpt Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommand INFO: Executing shell command: 'mkdir target/surefire-reports/processes' std error mkdir: cannot create directory 'target/surefire-reports/processes': File exists Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.BaseServerKillProcessor dumpStream INFO: Execution result: 'mkdir: cannot create directory 'target/surefire-reports/processes': File exists' Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommand INFO: Executing shell command: 'ps aux > target/surefire-reports/processes/null:null_12.txt' Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.BaseServerKillProcessor dumpProcesses INFO: Logged current running processes to: target/surefire-reports/processes/null:null_12.txt Nov 15, 2016 4:41:46 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController start INFO: Manual starting of a server instance with overridden configuration. New configuration: {managementAddress=127.0.0.1, javaVmArguments=-server -Xms64m -Xmx1024m -XX:MaxPermSize=512m -Dorg.jboss.byteman.verbose -Djboss.modules.system.pkgs=org.jboss.byteman -Dorg.jboss.byteman.transform.all -javaagent:/home/jenkins/workspace/narayana-codeCoverage/XTS/localjunit/crash-recovery-tests/target/lib/byteman.jar=script:target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm,boot:target/lib/byteman.jar,listener:true , startupTimeoutInSeconds=60, serverConfig=standalone-xts.xml} Nov 15, 2016 4:41:46 PM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal WARNING: Bundles path is deprecated and no longer used. Nov 15, 2016 4:41:46 PM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal INFO: Starting container with: [/usr/lib/jvm/java-1.8.0-openjdk/bin/java, -D[Standalone], -server, -Xms64m, -Xmx1024m, -XX:MaxPermSize=512m, -Dorg.jboss.byteman.verbose, -Djboss.modules.system.pkgs=org.jboss.byteman, -Dorg.jboss.byteman.transform.all, -javaagent:/home/jenkins/workspace/narayana-codeCoverage/XTS/localjunit/crash-recovery-tests/target/lib/byteman.jar=script:target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm,boot:target/lib/byteman.jar,listener:true, -ea, -Djboss.home.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT, -Dorg.jboss.boot.log.file=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/log/server.log, -Dlogging.configuration=file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/configuration/logging.properties, -jar, /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/jboss-modules.jar, -mp, /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/modules, org.jboss.as.standalone, -Djboss.home.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT, -Djboss.server.base.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone, -Djboss.server.log.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/log, -Djboss.server.config.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/configuration, -c=standalone-xts.xml] OpenJDK 64-Bit Server VM warning: ignoring option MaxPermSize=512m; support was removed in 8.0 TransformListener() : accepting requests on localhost:9091 16:41:47,298 INFO [org.jboss.modules] (main) JBoss Modules version 1.6.0.Beta3 16:41:47,473 INFO [org.jboss.msc] (main) JBoss MSC version 1.2.7.Final 16:41:47,565 INFO [org.jboss.as] (MSC service thread 1-7) WFLYSRV0049: WildFly Core 3.0.0.Alpha12 "Kenny" starting 16:41:47,703 INFO [org.jboss.as.domain.management] (MSC service thread 1-1) WFLYDM0136: Registered OpenSSL provider 16:41:48,403 INFO [org.jboss.as.controller.management-deprecated] (ServerService Thread Pool -- 7) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/subsystem=undertow/server=default-server/https-listener=https' 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:41:48,449 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http) 16:41:48,460 INFO [org.xnio] (MSC service thread 1-8) XNIO version 3.4.1.Final 16:41:48,465 INFO [org.xnio.nio] (MSC service thread 1-8) XNIO NIO Implementation Version 3.4.1.Final 16:41:48,483 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 40) WFLYCLINF0001: Activating Infinispan subsystem. 16:41:48,484 INFO [org.wildfly.iiop.openjdk] (ServerService Thread Pool -- 41) WFLYIIOP0001: Activating IIOP Subsystem 16:41:48,485 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 39) WFLYIO001: Worker 'default' has auto-configured to 48 core threads with 384 task threads based on your 24 available processors 16:41:48,487 INFO [org.jboss.as.jsf] (ServerService Thread Pool -- 47) WFLYJSF0007: Activated the following JSF Implementations: [main] 16:41:48,493 INFO [org.jboss.as.connector] (MSC service thread 1-2) WFLYJCA0009: Starting JCA Subsystem (WildFly/IronJacamar 1.3.4.Final) 16:41:48,536 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 35) WFLYJCA0004: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3) 16:41:48,537 INFO [org.jboss.as.naming] (ServerService Thread Pool -- 51) WFLYNAM0001: Activating Naming Subsystem 16:41:48,540 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-6) WFLYJCA0018: Started Driver service with driver-name = h2 16:41:48,550 WARN [org.jboss.as.txn] (ServerService Thread Pool -- 59) WFLYTX0013: Node identifier property is set to the default value. Please make sure it is unique. 16:41:48,557 INFO [org.jboss.as.webservices] (ServerService Thread Pool -- 61) WFLYWS0002: Activating WebServices Extension 16:41:48,558 INFO [org.jboss.as.security] (ServerService Thread Pool -- 58) WFLYSEC0002: Activating Security Subsystem 16:41:48,560 INFO [org.jboss.as.security] (MSC service thread 1-7) WFLYSEC0001: Current PicketBox version=5.0.0.Alpha3 16:41:48,599 INFO [org.wildfly.extension.undertow] (MSC service thread 1-4) WFLYUT0003: Undertow 1.4.4.Final starting 16:41:48,602 INFO [org.jboss.as.naming] (MSC service thread 1-4) WFLYNAM0003: Starting Naming Service 16:41:48,603 INFO [org.jboss.as.mail.extension] (MSC service thread 1-7) WFLYMAIL0001: Bound mail session [java:jboss/mail/Default] 16:41:48,616 INFO [org.jboss.remoting] (MSC service thread 1-8) JBoss Remoting version 5.0.0.Beta7 16:41:48,636 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : possible trigger for rule create participant deletes counter in class org.jboss.jbossts.XTSService 16:41:48,663 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : possible trigger for rule reset periodic recovery wait time in class com.arjuna.ats.arjuna.common.RecoveryEnvironmentBean 16:41:48,675 INFO [stdout] (MSC service thread 1-7) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.common.RecoveryEnvironmentBean.getPeriodicRecoveryPeriod() int for rule reset periodic recovery wait time 16:41:48,676 INFO [stdout] (ServerService Thread Pool -- 63) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.XTSService.start() void for rule create participant deletes counter 16:41:48,684 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : inserted trigger for reset periodic recovery wait time in class com.arjuna.ats.arjuna.common.RecoveryEnvironmentBean 16:41:48,691 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : inserted trigger for create participant deletes counter in class org.jboss.jbossts.XTSService 16:41:48,693 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : possible trigger for rule open trace file in class org.jboss.jbossts.XTSService 16:41:48,695 INFO [stdout] (ServerService Thread Pool -- 63) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.XTSService.start() void for rule open trace file 16:41:48,699 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : inserted trigger for open trace file in class org.jboss.jbossts.XTSService 16:41:48,707 INFO [org.wildfly.security] (MSC service thread 1-8) ELY00001: WildFly Elytron version 1.1.0.Beta13 16:41:48,710 INFO [org.jboss.as.ejb3] (MSC service thread 1-1) WFLYEJB0482: Strict pool mdb-strict-max-pool is using a max instance size of 96 (per class), which is derived from the number of CPUs on this host. 16:41:48,710 INFO [org.jboss.as.ejb3] (MSC service thread 1-3) WFLYEJB0481: Strict pool slsb-strict-max-pool is using a max instance size of 384 (per class), which is derived from thread worker pool sizing. 16:41:48,723 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 60) WFLYUT0014: Creating file handler for path '/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]'] 16:41:48,730 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0012: Started server default-server. 16:41:48,731 INFO [stdout] (MSC service thread 1-7) Rule.execute called for reset periodic recovery wait time_1 16:41:48,731 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0018: Host default-host starting 16:41:48,733 INFO [stdout] (MSC service thread 1-7) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:48,735 INFO [stdout] (MSC service thread 1-7) calling activated() for helper class org.jboss.byteman.rule.helper.Helper 16:41:48,735 INFO [stdout] (MSC service thread 1-7) Default helper activated 16:41:48,735 INFO [stdout] (MSC service thread 1-7) calling installed(reset periodic recovery wait time) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:48,736 INFO [stdout] (MSC service thread 1-7) Installed rule using default helper : reset periodic recovery wait time 16:41:48,736 INFO [stdout] (MSC service thread 1-7) reset periodic recovery wait time execute 16:41:48,736 INFO [stdout] (MSC service thread 1-7) caught ReturnException 16:41:48,761 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : possible trigger for rule trace TX save at prepare in class com.arjuna.ats.arjuna.coordinator.BasicAction 16:41:48,790 INFO [stdout] (MSC service thread 1-7) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.coordinator.BasicAction.prepare(boolean) int for rule trace TX save at prepare 16:41:48,794 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : inserted trigger for trace TX save at prepare in class com.arjuna.ats.arjuna.coordinator.BasicAction 16:41:48,794 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:8080 16:41:48,799 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : possible trigger for rule trace remove committed state and exit JVM in class com.arjuna.ats.arjuna.coordinator.BasicAction 16:41:48,817 INFO [stdout] (MSC service thread 1-7) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.coordinator.BasicAction.updateState() void for rule trace remove committed state and exit JVM 16:41:48,818 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : inserted trigger for trace remove committed state and exit JVM in class com.arjuna.ats.arjuna.coordinator.BasicAction 16:41:48,822 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : possible trigger for rule trace remove committed state in class com.arjuna.ats.arjuna.coordinator.BasicAction 16:41:48,840 INFO [stdout] (MSC service thread 1-7) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.coordinator.BasicAction.updateState() void for rule trace remove committed state 16:41:48,843 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : inserted trigger for trace remove committed state in class com.arjuna.ats.arjuna.coordinator.BasicAction 16:41:48,923 INFO [org.wildfly.iiop.openjdk] (MSC service thread 1-6) WFLYIIOP0009: CORBA ORB Service started 16:41:49,091 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-3) WFLYJCA0001: Bound data source [java:jboss/datasources/ExampleDS] 16:41:49,106 INFO [org.jboss.as.patching] (MSC service thread 1-4) WFLYPAT0050: WildFly cumulative patch ID is: base, one-off patches include: none 16:41:49,145 INFO [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0027: Starting deployment of "restat-web-5.4.1.Final-SNAPSHOT.war" (runtime-name: "restat-web-5.4.1.Final-SNAPSHOT.war") 16:41:49,147 INFO [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0027: Starting deployment of "xtstest.war" (runtime-name: "xtstest.war") 16:41:49,148 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-3) WFLYDS0013: Started FileSystemDeploymentService for directory /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/deployments 16:41:49,324 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221000: live Message Broker is starting with configuration Broker Configuration (clustered=false,journalDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/journal,bindingsDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/bindings,largeMessagesDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/largemessages,pagingDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/paging) 16:41:49,375 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221012: Using AIO Journal 16:41:49,389 INFO [org.infinispan.factories.GlobalComponentRegistry] (MSC service thread 1-5) ISPN000128: Infinispan version: Infinispan 'Chakra' 8.2.4.Final 16:41:49,429 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-5) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,430 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-4) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,430 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-8) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,431 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-8) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,431 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-5) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,432 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,432 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,433 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-4) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,434 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-4) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,434 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,434 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,435 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-4) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,442 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-5) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,442 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-5) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,445 WARN [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0088: HTTP/2 will not be enabled as TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 is not enabled. You may need to install JCE to enable strong ciphers to allow HTTP/2 to function. 16:41:49,456 INFO [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0006: Undertow HTTPS listener https listening on 127.0.0.1:8443 16:41:49,537 INFO [org.jboss.ws.common.management] (MSC service thread 1-8) JBWS022052: Starting JBossWS 5.1.5.Final (Apache CXF 3.1.8) 16:41:49,539 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-t11-client 16:41:49,539 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-t11-coordinator 16:41:49,539 INFO [org.jboss.as.webservices] (MSC service thread 1-3) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-t11-participant 16:41:49,539 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-c11 16:41:49,569 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-server]. Adding protocol support for: CORE 16:41:49,571 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-amqp-protocol]. Adding protocol support for: AMQP 16:41:49,572 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithCoordinatorCompletionParticipantService address=http://localhost:8080/ws-t11-participant/BusinessAgreementWithCoordinatorCompletionParticipantService implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionParticipantPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantService portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:49,572 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-4) JBWS024061: Adding service endpoint metadata: id=TerminationParticipantService address=http://localhost:8080/ws-t11-client/TerminationParticipantService implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationParticipantPortTypeImpl serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantService portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:49,572 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-5) JBWS024061: Adding service endpoint metadata: id=ActivationService address=http://localhost:8080/ws-c11/ActivationService implementor=com.arjuna.webservices11.wscoor.sei.ActivationPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService portName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:49,572 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CompletionCoordinatorService address=http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorService implementor=com.arjuna.webservices11.wsat.sei.CompletionCoordinatorPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorService portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:49,572 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-hornetq-protocol]. Adding protocol support for: HORNETQ 16:41:49,572 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=ParticipantService address=http://localhost:8080/ws-t11-participant/ParticipantService implementor=com.arjuna.webservices11.wsat.sei.ParticipantPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:49,572 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=TerminationCoordinatorService address=http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorService implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorPortTypeImpl serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorService portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:49,573 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-5) JBWS024061: Adding service endpoint metadata: id=RegistrationService address=http://localhost:8080/ws-c11/RegistrationService implementor=com.arjuna.webservices11.wscoor.sei.RegistrationPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService portName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:49,573 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithParticipantCompletionParticipantService address=http://localhost:8080/ws-t11-participant/BusinessAgreementWithParticipantCompletionParticipantService implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantService portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:49,573 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-4) JBWS024061: Adding service endpoint metadata: id=CompletionInitiatorService address=http://localhost:8080/ws-t11-client/CompletionInitiatorService implementor=com.arjuna.webservices11.wsat.sei.CompletionInitiatorPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorService portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:49,573 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-stomp-protocol]. Adding protocol support for: STOMP 16:41:49,573 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=TerminationCoordinatorRPCService address=http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorRPCService implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorRPCPortTypeImpl serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypeImplService portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypePort annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:49,573 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithCoordinatorCompletionCoordinatorService address=http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithCoordinatorCompletionCoordinatorService implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorService portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:49,574 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithParticipantCompletionCoordinatorService address=http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithParticipantCompletionCoordinatorService implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorService portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:49,574 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CoordinatorService address=http://localhost:8080/ws-t11-coordinator/CoordinatorService implementor=com.arjuna.webservices11.wsat.sei.CoordinatorPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:49,574 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CompletionCoordinatorRPCService address=http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorRPCService implementor=com.arjuna.webservices11.wsat.sei.CompletionCoordinatorRPCPortTypeImpl serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCService portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCPortType annotationWsdlLocation=null wsdlLocationOverride=null mtomEnabled=false 16:41:49,629 WARN [org.jboss.as.dependency.private] (MSC service thread 1-7) WFLYSRV0018: Deployment "deployment.restat-web-5.4.1.Final-SNAPSHOT.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice. 16:41:49,629 WARN [org.jboss.as.dependency.private] (MSC service thread 1-7) WFLYSRV0018: Deployment "deployment.restat-web-5.4.1.Final-SNAPSHOT.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice. 16:41:49,806 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,807 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:49,815 WARN [org.jboss.as.dependency.private] (MSC service thread 1-8) WFLYSRV0018: Deployment "deployment.xtstest.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice. 16:41:49,833 INFO [org.jboss.weld.deployer] (MSC service thread 1-8) WFLYWELD0003: Processing weld deployment xtstest.war 16:41:49,863 INFO [org.hibernate.validator.internal.util.Version] (MSC service thread 1-8) HV000001: Hibernate Validator 5.2.4.Final 16:41:49,897 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-7) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor-throughput acceptor 16:41:49,897 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-6) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor-throughput acceptor 16:41:49,897 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-2) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor acceptor 16:41:49,898 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-2) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor acceptor 16:41:49,937 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 65) WFLYUT0021: Registered web context: '/rest-tx' for server 'default-server' 16:41:49,960 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221007: Server is now live 16:41:49,960 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221001: Apache ActiveMQ Artemis Message Broker version 1.5.0 [default, nodeID=ef9290cb-ab4d-11e6-b97f-0242ac110007] 16:41:49,962 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221003: Deploying queue jms.queue.DLQ 16:41:49,992 INFO [org.wildfly.extension.messaging-activemq] (ServerService Thread Pool -- 67) WFLYMSGAMQ0002: Bound messaging object to jndi name java:/ConnectionFactory 16:41:49,993 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 70) AMQ221003: Deploying queue jms.queue.ExpiryQueue 16:41:49,995 INFO [org.wildfly.extension.messaging-activemq] (ServerService Thread Pool -- 65) WFLYMSGAMQ0002: Bound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory 16:41:50,010 INFO [org.jboss.weld.Version] (MSC service thread 1-8) WELD-000900: 2.4.0 (Final) 16:41:50,018 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-8) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_One address=http://localhost:8080/xtstest/xtsservicetest1 implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl wsdlLocationOverride=null mtomEnabled=false 16:41:50,019 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-8) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_Two address=http://localhost:8080/xtstest/xtsservicetest2 implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl wsdlLocationOverride=null mtomEnabled=false 16:41:50,019 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-8) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_Three address=http://localhost:8080/xtstest/xtsservicetest3 implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl wsdlLocationOverride=null mtomEnabled=false 16:41:50,019 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-8) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Subordinate_Service_One address=http://localhost:8080/xtstest/xtssubordinateservicetest1 implementor=org.jboss.jbossts.xts.servicetests.service.subordinate.XTSSubordinateServiceTestPortTypeImpl serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl wsdlLocationOverride=null mtomEnabled=false 16:41:50,026 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-6) WFLYJCA0007: Registered connection factory java:/JmsXA 16:41:50,036 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-8) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl 16:41:50,036 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-5) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService from class com.arjuna.webservices11.wscoor.sei.ActivationPortTypeImpl 16:41:50,036 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorService from class com.arjuna.webservices11.wsat.sei.CompletionCoordinatorPortTypeImpl 16:41:50,036 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantService from class com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationParticipantPortType 16:41:50,036 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantService from class org.oasis_open.docs.ws_tx.wsba._2006._06.BusinessAgreementWithCoordinatorCompletionParticipantPortType 16:41:50,062 INFO [org.apache.activemq.artemis.ra] (MSC service thread 1-6) Resource adaptor started 16:41:50,062 INFO [org.jboss.as.connector.services.resourceadapters.ResourceAdapterActivatorService$ResourceAdapterActivator] (MSC service thread 1-6) IJ020002: Deployed: file://RaActivatoractivemq-ra 16:41:50,063 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-6) WFLYJCA0002: Bound JCA ConnectionFactory [java:/JmsXA] 16:41:50,063 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-2) WFLYMSGAMQ0002: Bound messaging object to jndi name java:jboss/DefaultJMSConnectionFactory 16:41:50,339 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-8) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest1 16:41:50,386 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be http://localhost:8080/ws-t11-client/TerminationParticipantService 16:41:50,390 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorService 16:41:50,390 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/BusinessAgreementWithCoordinatorCompletionParticipantService 16:41:50,400 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-5) Setting the server's publish address to be http://localhost:8080/ws-c11/ActivationService 16:41:50,429 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-8) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl 16:41:50,430 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-8) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl 16:41:50,432 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-8) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest2 16:41:50,436 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-8) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl 16:41:50,436 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-8) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl 16:41:50,438 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-8) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest3 16:41:50,442 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-8) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl 16:41:50,442 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-8) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl 16:41:50,444 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-8) Setting the server's publish address to be http://localhost:8080/xtstest/xtssubordinateservicetest1 16:41:50,448 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CompletionCoordinatorService.wsdl 16:41:50,449 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorService from class com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationCoordinatorPortType 16:41:50,449 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-8) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl 16:41:50,450 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-5) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-c11.deployment/ActivationService.wsdl 16:41:50,450 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-4) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-client.deployment/TerminationParticipantService.wsdl 16:41:50,450 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-5) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from class com.arjuna.webservices11.wscoor.sei.RegistrationPortTypeImpl 16:41:50,451 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorService from class com.arjuna.webservices11.wsat.sei.CompletionInitiatorPortTypeImpl 16:41:50,455 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorService 16:41:50,459 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/BusinessAgreementWithCoordinatorCompletionParticipantService.wsdl 16:41:50,460 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be http://localhost:8080/ws-t11-client/CompletionInitiatorService 16:41:50,460 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from class com.arjuna.webservices11.wsat.sei.ParticipantPortTypeImpl 16:41:50,462 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/TerminationCoordinatorService.wsdl 16:41:50,462 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/ParticipantService 16:41:50,463 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypeImplService from class com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorRPCPortTypeImpl 16:41:50,463 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_One 16:41:50,463 INFO [org.jboss.as.webservices] (MSC service thread 1-8) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Subordinate_Service_One 16:41:50,463 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Three 16:41:50,464 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Two 16:41:50,465 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorRPCService 16:41:50,465 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-5) Setting the server's publish address to be http://localhost:8080/ws-c11/RegistrationService 16:41:50,466 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-4) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-client.deployment/CompletionInitiatorService.wsdl 16:41:50,469 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-2) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:50,470 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-2) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. 16:41:50,470 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/ParticipantService.wsdl 16:41:50,472 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl 16:41:50,472 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/TerminationCoordinatorRPCPortTypeImplService.wsdl 16:41:50,472 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-client.deployment".CompletionInitiatorService 16:41:50,472 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-client.deployment".TerminationParticipantService 16:41:50,473 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl 16:41:50,473 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-t11-client 16:41:50,478 INFO [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0021: Registered web context: '/ws-t11-client' for server 'default-server' 16:41:50,482 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/BusinessAgreementWithParticipantCompletionParticipantService 16:41:50,483 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-5) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-c11.deployment/RegistrationService.wsdl 16:41:50,487 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint."ws-c11.deployment".RegistrationService 16:41:50,487 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint."ws-c11.deployment".ActivationService 16:41:50,489 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-c11 16:41:50,490 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0021: Registered web context: '/ws-c11' for server 'default-server' 16:41:50,492 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/BusinessAgreementWithParticipantCompletionParticipantService.wsdl 16:41:50,495 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithParticipantCompletionParticipantService 16:41:50,495 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".ParticipantService 16:41:50,495 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithCoordinatorCompletionParticipantService 16:41:50,496 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-t11-participant 16:41:50,497 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0021: Registered web context: '/ws-t11-participant' for server 'default-server' 16:41:50,502 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithCoordinatorCompletionCoordinatorService 16:41:50,517 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/BusinessAgreementWithCoordinatorCompletionCoordinatorService.wsdl 16:41:50,518 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl 16:41:50,522 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithParticipantCompletionCoordinatorService 16:41:50,533 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/BusinessAgreementWithParticipantCompletionCoordinatorService.wsdl 16:41:50,533 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from class com.arjuna.webservices11.wsat.sei.CoordinatorPortTypeImpl 16:41:50,537 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CoordinatorService 16:41:50,544 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CoordinatorService.wsdl 16:41:50,545 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCService from class com.arjuna.webservices11.wsat.sei.CompletionCoordinatorRPCPortTypeImpl 16:41:50,549 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorRPCService 16:41:50,555 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CompletionCoordinatorRPCService.wsdl 16:41:50,560 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorRPCService 16:41:50,560 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorService 16:41:50,561 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorRPCService 16:41:50,561 INFO [org.jboss.as.webservices] (MSC service thread 1-8) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithCoordinatorCompletionCoordinatorService 16:41:50,561 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithParticipantCompletionCoordinatorService 16:41:50,561 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CoordinatorService 16:41:50,561 INFO [org.jboss.as.webservices] (MSC service thread 1-3) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorService 16:41:50,564 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-t11-coordinator 16:41:50,565 INFO [org.wildfly.extension.undertow] (MSC service thread 1-4) WFLYUT0021: Registered web context: '/ws-t11-coordinator' for server 'default-server' 16:41:50,569 INFO [stdout] (MSC service thread 1-4) Rule.execute called for open trace file_2 16:41:50,570 INFO [stdout] (MSC service thread 1-4) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:41:50,570 INFO [stdout] (MSC service thread 1-4) calling installed(open trace file) for helper classorg.jboss.byteman.rule.helper.Helper 16:41:50,570 INFO [stdout] (MSC service thread 1-4) Installed rule using default helper : open trace file 16:41:50,570 INFO [stdout] (MSC service thread 1-4) open trace file execute 16:41:50,570 INFO [stdout] (MSC service thread 1-4) Rule.execute called for create participant deletes counter_0 16:41:50,571 INFO [stdout] (MSC service thread 1-4) Rule.execute for decommissioned key create participant deletes counter_0 16:41:50,582 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace Participant send rollback in class com.arjuna.wst11.messaging.CoordinatorProcessorImpl 16:41:50,583 INFO [stdout] (MSC service thread 1-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.CoordinatorProcessorImpl.prepared(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace Participant send rollback 16:41:50,587 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace Participant send rollback in class com.arjuna.wst11.messaging.CoordinatorProcessorImpl 16:41:50,607 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate coordinator close in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator 16:41:50,607 INFO [stdout] (MSC service thread 1-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator.rollback() void for rule trace subordinate coordinator close 16:41:50,608 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate coordinator close in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator 16:41:50,609 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate coordinator prepare in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator 16:41:50,609 INFO [stdout] (MSC service thread 1-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator.prepare() int for rule trace subordinate coordinator prepare 16:41:50,610 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate coordinator prepare in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator 16:41:50,611 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate coordinator rollback 2 in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator 16:41:50,612 INFO [stdout] (MSC service thread 1-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator.rollback() void for rule trace subordinate coordinator rollback 2 16:41:50,613 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate coordinator rollback 2 in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator 16:41:50,632 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace delete participant and exit JVM in class org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple 16:41:50,633 INFO [stdout] (MSC service thread 1-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple.deleteParticipantRecoveryRecord(java.lang.String) boolean for rule trace delete participant and exit JVM 16:41:50,634 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace delete participant and exit JVM in class org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple 16:41:50,661 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-2) ARJUNA033013: OutboundBridgeRecoveryManager starting 16:41:50,661 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-4) ARJUNA033006: InboundBridgeRecoveryManager starting 16:41:50,749 WARN [org.jboss.weld.Bootstrap] (MSC service thread 1-7) WELD-000169: Jandex cannot distinguish inner and static nested classes! Update Jandex to 2.0.3.Final version or newer to improve scanning performance. 16:41:51,008 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (ServerService Thread Pool -- 73) Starting XTSServiceTestRunner 16:41:51,008 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (ServerService Thread Pool -- 73) Started XTSServiceTestRunner 16:41:51,017 INFO [javax.enterprise.resource.webcontainer.jsf.config] (ServerService Thread Pool -- 73) Initializing Mojarra 2.2.13.SP1 20160303-1204 for context '/xtstest' 16:41:51,377 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 73) WFLYUT0021: Registered web context: '/xtstest' for server 'default-server' 16:41:51,390 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0010: Deployed "xtstest.war" (runtime-name : "xtstest.war") 16:41:51,391 INFO [org.jboss.as.server] (ServerService Thread Pool -- 36) WFLYSRV0010: Deployed "restat-web-5.4.1.Final-SNAPSHOT.war" (runtime-name : "restat-web-5.4.1.Final-SNAPSHOT.war") 16:41:51,449 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:9990/management 16:41:51,449 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:9990 16:41:51,450 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Core 3.0.0.Alpha12 "Kenny" started in 4409ms - Started 671 of 918 services (462 services are lazy, passive or on-demand) Nov 15, 2016 4:41:51 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController kill INFO: Hard killing of a server instance Nov 15, 2016 4:41:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: waiting for byteman to kill the server Nov 15, 2016 4:41:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:42:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:42:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:42:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:42:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' 16:42:18,935 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate prepared replay in class org.jboss.jbossts.xts.recovery.coordinator.at.RecoverySubordinateATCoordinator 16:42:18,937 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.xts.recovery.coordinator.at.RecoverySubordinateATCoordinator.replayPhase2() void for rule trace subordinate prepared replay 16:42:18,938 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate prepared replay in class org.jboss.jbossts.xts.recovery.coordinator.at.RecoverySubordinateATCoordinator 16:42:18,977 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace Coordinator engine create in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:42:18,978 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.(java.lang.String,boolean,javax.xml.ws.wsaddressing.W3CEndpointReference,boolean,com.arjuna.webservices11.wsat.State) void for rule trace Coordinator engine create 16:42:18,991 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace Coordinator engine create in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:42:18,992 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive Participant aborted in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:42:18,992 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.aborted(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive Participant aborted 16:42:19,002 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive Participant aborted in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:42:19,004 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive participant prepared in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:42:19,004 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.prepared(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive participant prepared 16:42:19,015 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive participant prepared in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:42:19,017 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send participant prepare in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:42:19,018 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.prepare() com.arjuna.webservices11.wsat.State for rule trace send participant prepare 16:42:19,028 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace send participant prepare in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:42:19,029 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send Participant rollback in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:42:19,030 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.rollback() com.arjuna.webservices11.wsat.State for rule trace send Participant rollback 16:42:19,040 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace send Participant rollback in class com.arjuna.wst11.messaging.engines.CoordinatorEngine 16:42:19,042 INFO [stdout] (Periodic Recovery) Rule.execute called for trace Coordinator engine create_12 16:42:19,042 INFO [stdout] (Periodic Recovery) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:42:19,042 INFO [stdout] (Periodic Recovery) calling installed(trace Coordinator engine create) for helper classorg.jboss.byteman.rule.helper.Helper 16:42:19,042 INFO [stdout] (Periodic Recovery) Installed rule using default helper : trace Coordinator engine create 16:42:19,042 INFO [stdout] (Periodic Recovery) trace Coordinator engine create execute 16:42:19,043 INFO [stdout] (Periodic Recovery) rule.debug{trace Coordinator engine create} : created recovered Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:20 16:42:19,054 INFO [stdout] (Periodic Recovery) Rule.execute called for trace Coordinator engine create_12 16:42:19,054 INFO [stdout] (Periodic Recovery) trace Coordinator engine create execute 16:42:19,054 INFO [stdout] (Periodic Recovery) rule.debug{trace Coordinator engine create} : created recovered Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:23 16:42:19,054 INFO [stdout] (Periodic Recovery) Rule.execute called for trace subordinate prepared replay_11 16:42:19,057 INFO [stdout] (Periodic Recovery) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:42:19,057 INFO [stdout] (Periodic Recovery) calling installed(trace subordinate prepared replay) for helper classorg.jboss.byteman.rule.helper.Helper 16:42:19,057 INFO [stdout] (Periodic Recovery) Installed rule using default helper : trace subordinate prepared replay 16:42:19,057 INFO [stdout] (Periodic Recovery) trace subordinate prepared replay execute 16:42:19,057 INFO [stdout] (Periodic Recovery) rule.debug{trace subordinate prepared replay} : reinstated prepared subordinate transaction 0:ffffac110007:-3ffa9bb3:582b3abd:19 16:42:19,062 INFO [stdout] (Periodic Recovery) xts service test : attempting to deserialize WS-AT participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.2 16:42:19,064 INFO [stdout] (Periodic Recovery) xts service test : deserialized WS-AT participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.2 16:42:19,065 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace Participant create in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:42:19,066 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.(com.arjuna.wst.Participant,java.lang.String,com.arjuna.webservices11.wsat.State,javax.xml.ws.wsaddressing.W3CEndpointReference,boolean) void for rule trace Participant create 16:42:19,078 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace Participant create in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:42:19,079 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive participant prepare in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:42:19,079 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.prepare(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive participant prepare 16:42:19,086 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive participant prepare in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:42:19,087 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send Participant prepared in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:42:19,093 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.sendPrepared(boolean) void for rule trace send Participant prepared 16:42:19,093 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace send Participant prepared in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:42:19,095 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive Participant rollback in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:42:19,096 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.rollback(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive Participant rollback 16:42:19,102 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive Participant rollback in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:42:19,103 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send Participant aborted in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:42:19,109 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.sendAborted() void for rule trace send Participant aborted 16:42:19,109 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace send Participant aborted in class com.arjuna.wst11.messaging.engines.ParticipantEngine 16:42:19,111 INFO [stdout] (Periodic Recovery) Rule.execute called for trace Participant create_17 16:42:19,111 INFO [stdout] (Periodic Recovery) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:42:19,111 INFO [stdout] (Periodic Recovery) calling installed(trace Participant create) for helper classorg.jboss.byteman.rule.helper.Helper 16:42:19,111 INFO [stdout] (Periodic Recovery) Installed rule using default helper : trace Participant create 16:42:19,111 INFO [stdout] (Periodic Recovery) trace Participant create execute 16:42:19,111 INFO [stdout] (Periodic Recovery) rule.debug{trace Participant create} : created recovered Participant engine org.jboss.jbossts.xts.servicetests.DurableTestParticipant.2 16:42:19,118 INFO [stdout] (Periodic Recovery) Rule.execute called for trace send Participant prepared_19 16:42:19,118 INFO [stdout] (Periodic Recovery) Rule.execute for decommissioned key trace send Participant prepared_19 16:42:19,227 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Periodic Recovery) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl 16:42:19,520 INFO [stdout] (Periodic Recovery) xts service test : attempting to deserialize WS-AT participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.1 16:42:19,520 INFO [stdout] (Periodic Recovery) xts service test : deserialized WS-AT participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.1 16:42:19,520 INFO [stdout] (Periodic Recovery) Rule.execute called for trace Participant create_17 16:42:19,520 INFO [stdout] (Periodic Recovery) trace Participant create execute 16:42:19,520 INFO [stdout] (Periodic Recovery) rule.debug{trace Participant create} : created recovered Participant engine org.jboss.jbossts.xts.servicetests.DurableTestParticipant.1 16:42:19,521 INFO [stdout] (Periodic Recovery) Rule.execute called for trace send Participant prepared_19 16:42:19,521 INFO [stdout] (Periodic Recovery) Rule.execute for decommissioned key trace send Participant prepared_19 16:42:19,530 INFO [stdout] (TaskWorker-1) Rule.execute called for trace receive participant prepared_14 16:42:19,530 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:42:19,530 INFO [stdout] (TaskWorker-1) calling installed(trace receive participant prepared) for helper classorg.jboss.byteman.rule.helper.Helper 16:42:19,531 INFO [stdout] (TaskWorker-1) Installed rule using default helper : trace receive participant prepared 16:42:19,531 INFO [stdout] (TaskWorker-1) trace receive participant prepared execute 16:42:19,531 INFO [stdout] (TaskWorker-1) rule.debug{trace receive participant prepared} : prepared received for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:23 16:42:19,532 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Periodic Recovery) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl 16:42:19,550 INFO [stdout] (Periodic Recovery) xts service test : attempting to deserialize WS-AT participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.0 16:42:19,550 INFO [stdout] (Periodic Recovery) xts service test : deserialized WS-AT participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.0 16:42:19,551 INFO [stdout] (TaskWorker-1) Rule.execute called for trace receive participant prepared_14 16:42:19,551 INFO [stdout] (Periodic Recovery) Rule.execute called for trace Participant create_17 16:42:19,551 INFO [stdout] (TaskWorker-1) trace receive participant prepared execute 16:42:19,551 INFO [stdout] (Periodic Recovery) trace Participant create execute 16:42:19,551 INFO [stdout] (TaskWorker-1) rule.debug{trace receive participant prepared} : prepared received for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:20 16:42:19,551 INFO [stdout] (Periodic Recovery) rule.debug{trace Participant create} : created recovered Participant engine org.jboss.jbossts.xts.servicetests.DurableTestParticipant.0 16:42:19,551 INFO [stdout] (Periodic Recovery) Rule.execute called for trace send Participant prepared_19 16:42:19,551 INFO [stdout] (Periodic Recovery) Rule.execute for decommissioned key trace send Participant prepared_19 16:42:19,560 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Periodic Recovery) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl 16:42:19,576 WARN [com.arjuna.wsrecovery] (Periodic Recovery) ARJUNA046033: Compensating orphaned subordinate WS-AT transcation 0:ffffac110007:-3ffa9bb3:582b3abd:19 16:42:19,576 INFO [stdout] (Periodic Recovery) Rule.execute called for trace subordinate coordinator close_7 16:42:19,576 INFO [stdout] (Periodic Recovery) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:42:19,577 INFO [stdout] (Periodic Recovery) calling installed(trace subordinate coordinator close) for helper classorg.jboss.byteman.rule.helper.Helper 16:42:19,577 INFO [stdout] (Periodic Recovery) Installed rule using default helper : trace subordinate coordinator close 16:42:19,577 INFO [stdout] (Periodic Recovery) trace subordinate coordinator close execute 16:42:19,577 INFO [stdout] (Periodic Recovery) rule.debug{trace subordinate coordinator close} : rollback called for subordinate coordinator BasicAction: 0:ffffac110007:-3ffa9bb3:582b3abd:19 status: ActionStatus.COMMITTING 16:42:19,577 INFO [stdout] (Periodic Recovery) Rule.execute called for trace send Participant rollback_16 16:42:19,577 INFO [stdout] (Periodic Recovery) Rule.execute for decommissioned key trace send Participant rollback_16 16:42:19,583 WARN [com.arjuna.wst] (TaskWorker-1) ARJUNA043134: Prepared called on unknown coordinator: D0:ffffac110007:-3ffa9bb3:582b3abd:16 16:42:19,583 INFO [stdout] (TaskWorker-1) Rule.execute called for trace Participant send rollback_6 16:42:19,583 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:42:19,583 INFO [stdout] (TaskWorker-1) calling installed(trace Participant send rollback) for helper classorg.jboss.byteman.rule.helper.Helper 16:42:19,583 INFO [stdout] (TaskWorker-1) Installed rule using default helper : trace Participant send rollback 16:42:19,584 INFO [stdout] (TaskWorker-1) trace Participant send rollback execute 16:42:19,584 INFO [stdout] (TaskWorker-1) rule.debug{trace Participant send rollback} : sent rollback for unknown Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:16 16:42:19,588 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl 16:42:19,599 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Periodic Recovery) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl 16:42:19,600 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl 16:42:19,638 INFO [stdout] (TaskWorker-1) Rule.execute called for trace receive Participant rollback_20 16:42:19,638 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:42:19,638 INFO [stdout] (TaskWorker-1) calling installed(trace receive Participant rollback) for helper classorg.jboss.byteman.rule.helper.Helper 16:42:19,638 INFO [stdout] (TaskWorker-1) Installed rule using default helper : trace receive Participant rollback 16:42:19,638 INFO [stdout] (TaskWorker-1) trace receive Participant rollback execute 16:42:19,639 INFO [stdout] (TaskWorker-1) rule.debug{trace receive Participant rollback} : rollback received for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.0 16:42:19,639 INFO [stdout] (TaskWorker-1) Rule.execute called for trace delete participant and exit JVM_10 16:42:19,639 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:42:19,639 INFO [stdout] (TaskWorker-1) calling installed(trace delete participant and exit JVM) for helper classorg.jboss.byteman.rule.helper.Helper 16:42:19,639 INFO [stdout] (TaskWorker-1) Installed rule using default helper : trace delete participant and exit JVM 16:42:19,639 INFO [stdout] (TaskWorker-1) trace delete participant and exit JVM execute 16:42:19,640 INFO [stdout] (TaskWorker-1) Rule.execute called for trace send Participant aborted_21 16:42:19,640 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:42:19,640 INFO [stdout] (TaskWorker-1) calling installed(trace send Participant aborted) for helper classorg.jboss.byteman.rule.helper.Helper 16:42:19,640 INFO [stdout] (TaskWorker-1) Installed rule using default helper : trace send Participant aborted 16:42:19,640 INFO [stdout] (TaskWorker-1) trace send Participant aborted execute 16:42:19,640 INFO [stdout] (TaskWorker-1) rule.debug{trace send Participant aborted} : aborted sent for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.0 16:42:19,650 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl 16:42:19,667 INFO [stdout] (TaskWorker-1) Rule.execute called for trace receive Participant rollback_20 16:42:19,668 INFO [stdout] (TaskWorker-1) trace receive Participant rollback execute 16:42:19,668 INFO [stdout] (TaskWorker-1) rule.debug{trace receive Participant rollback} : rollback received for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.1 16:42:19,669 INFO [stdout] (TaskWorker-1) Rule.execute called for trace delete participant and exit JVM_10 16:42:19,669 INFO [stdout] (TaskWorker-1) trace delete participant and exit JVM execute 16:42:19,669 INFO [stdout] (TaskWorker-1) Rule.execute called for trace send Participant aborted_21 16:42:19,670 INFO [stdout] (TaskWorker-1) trace send Participant aborted execute 16:42:19,669 WARN [com.arjuna.wst] (TaskWorker-2) ARJUNA043130: Aborted called on unknown coordinator: D0:ffffac110007:-3ffa9bb3:582b3abd:16 16:42:19,670 INFO [stdout] (TaskWorker-1) rule.debug{trace send Participant aborted} : aborted sent for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.1 16:42:19,678 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl 16:42:19,694 INFO [stdout] (TaskWorker-2) Rule.execute called for trace receive Participant aborted_13 16:42:19,694 INFO [stdout] (TaskWorker-2) Rule.execute for decommissioned key trace receive Participant aborted_13 16:42:19,694 INFO [stdout] (Periodic Recovery) Rule.execute called for trace send Participant rollback_16 16:42:19,694 INFO [stdout] (Periodic Recovery) Rule.execute for decommissioned key trace send Participant rollback_16 16:42:19,710 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Periodic Recovery) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl 16:42:19,728 INFO [stdout] (TaskWorker-1) Rule.execute called for trace receive Participant rollback_20 16:42:19,728 INFO [stdout] (TaskWorker-1) trace receive Participant rollback execute 16:42:19,729 INFO [stdout] (TaskWorker-1) rule.debug{trace receive Participant rollback} : rollback received for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.2 16:42:19,729 INFO [stdout] (TaskWorker-1) Rule.execute called for trace delete participant and exit JVM_10 16:42:19,729 INFO [stdout] (TaskWorker-1) trace delete participant and exit JVM execute 16:42:19,729 INFO [stdout] (TaskWorker-1) Rule.execute called for trace send Participant aborted_21 16:42:19,729 INFO [stdout] (TaskWorker-1) trace send Participant aborted execute 16:42:19,730 INFO [stdout] (TaskWorker-1) rule.debug{trace send Participant aborted} : aborted sent for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.2 16:42:19,738 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl 16:42:19,752 INFO [stdout] (TaskWorker-2) Rule.execute called for trace receive Participant aborted_13 16:42:19,752 INFO [stdout] (TaskWorker-2) Rule.execute for decommissioned key trace receive Participant aborted_13 16:42:19,753 INFO [stdout] (Periodic Recovery) Rule.execute called for trace remove committed state_5 16:42:19,753 INFO [stdout] (Periodic Recovery) Rule.execute for decommissioned key trace remove committed state_5 16:42:19,753 INFO [stdout] (Periodic Recovery) Rule.execute called for trace remove committed state and exit JVM_4 16:42:19,753 INFO [stdout] (Periodic Recovery) Rule.execute for decommissioned key trace remove committed state and exit JVM_4 16:42:19,753 INFO [stdout] (Periodic Recovery) Rule.execute called for trace subordinate coordinator rollback 2_9 16:42:19,754 INFO [stdout] (Periodic Recovery) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:42:19,754 INFO [stdout] (Periodic Recovery) calling installed(trace subordinate coordinator rollback 2) for helper classorg.jboss.byteman.rule.helper.Helper 16:42:19,754 INFO [stdout] (Periodic Recovery) Installed rule using default helper : trace subordinate coordinator rollback 2 16:42:19,754 INFO [stdout] (Periodic Recovery) trace subordinate coordinator rollback 2 execute 16:42:19,754 INFO [stdout] (Periodic Recovery) rule.debug{trace subordinate coordinator rollback 2} : rollback returned for subordinate coordinator BasicAction: 0:ffffac110007:-3ffa9bb3:582b3abd:19 status: ActionStatus.ABORTED Nov 15, 2016 4:42:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:42:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:42:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:42:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:42:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:42:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:42:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:42:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:43:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:43:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:43:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:43:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:43:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:43:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:43:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:43:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:43:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:43:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:43:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:43:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:44:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:44:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:44:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:44:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:44:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:44:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:44:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:44:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:44:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:44:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:44:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:44:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:45:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:45:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:45:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:45:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:45:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:45:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:45:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:45:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:45:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:45:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:45:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:45:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:46:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:46:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:46:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:46:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:46:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:46:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:46:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:46:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:46:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:46:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:46:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:46:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:47:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:47:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:47:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:47:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:47:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:47:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:47:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:47:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:47:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:47:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:47:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:47:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:48:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:48:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:48:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:48:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:48:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:48:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:48:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:48:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:48:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:48:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:48:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:48:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:49:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:49:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:49:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:49:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:49:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:49:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:49:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:49:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:49:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:49:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:49:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:49:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:50:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:50:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:50:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:50:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:50:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:50:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:50:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:50:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:50:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:50:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:50:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:50:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:51:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:51:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:51:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:51:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:51:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:51:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:51:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:51:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:51:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:51:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:51:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill INFO: jboss-as is still alive, sleeping for a further 10000ms Nov 15, 2016 4:51:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommand INFO: Executing shell command: 'ps aux | grep jboss-module[s] | awk '{print $2}' | xargs kill' Nov 15, 2016 4:51:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' 16:51:51,969 INFO [org.jboss.as.server] (Thread-3) WFLYSRV0220: Server shutdown has been requested via an OS signal 16:51:51,982 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-6) ARJUNA033007: InboundBridgeRecoveryManager stopping 16:51:51,982 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-8) WFLYMSGAMQ0006: Unbound messaging object to jndi name java:jboss/DefaultJMSConnectionFactory 16:51:51,982 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-7) ARJUNA033014: OutboundBridgeRecoveryManager stopping 16:51:51,984 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-1) WFLYJCA0011: Unbound JCA ConnectionFactory [java:/JmsXA] 16:51:51,984 INFO [org.wildfly.extension.messaging-activemq] (ServerService Thread Pool -- 77) WFLYMSGAMQ0006: Unbound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory 16:51:51,990 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 78) WFLYUT0022: Unregistered web context: '/rest-tx' from server 'default-server' 16:51:51,990 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 80) WFLYUT0022: Unregistered web context: '/xtstest' from server 'default-server' 16:51:51,996 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (ServerService Thread Pool -- 80) Stopping XTSServiceTestRunner 16:51:51,996 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (ServerService Thread Pool -- 80) Stopped XTSServiceTestRunner 16:51:51,997 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0004: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Subordinate_Service_One 16:51:51,997 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0004: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Two 16:51:51,998 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0004: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Three 16:51:51,998 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0004: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_One 16:51:52,012 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-1) WFLYJCA0010: Unbound data source [java:jboss/datasources/ExampleDS] 16:51:52,013 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-6) WFLYJCA0019: Stopped Driver service with driver-name = h2 16:51:52,017 INFO [org.apache.activemq.artemis.ra] (ServerService Thread Pool -- 78) AMQ151003: resource adaptor stopped 16:51:52,026 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) WFLYSRV0028: Stopped deployment restat-web-5.4.1.Final-SNAPSHOT.war (runtime-name: restat-web-5.4.1.Final-SNAPSHOT.war) in 50ms 16:51:52,031 INFO [org.jboss.as.server.deployment] (MSC service thread 1-6) WFLYSRV0028: Stopped deployment xtstest.war (runtime-name: xtstest.war) in 56ms 16:51:52,053 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 78) AMQ221002: Apache ActiveMQ Artemis Message Broker version 1.5.0 [ef9290cb-ab4d-11e6-b97f-0242ac110007] stopped, uptime 10 minutes Nov 15, 2016 4:51:56 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' 16:51:59,834 WARN [org.apache.activemq.artemis.service.extensions.xa.recovery] (Periodic Recovery) AMQ122015: Can not connect to XARecoveryConfig [transportConfiguration=[TransportConfiguration(name=, factory=org-apache-activemq-artemis-core-remoting-impl-invm-InVMConnectorFactory) ?serverId=0], discoveryConfiguration=null, username=null, password=****, JNDI_NAME=java:/JmsXA] on auto-generated resource recovery: ActiveMQNotConnectedException[errorType=NOT_CONNECTED message=AMQ119007: Cannot connect to server(s). Tried with all available servers.] at org.apache.activemq.artemis.core.client.impl.ServerLocatorImpl.createSessionFactory(ServerLocatorImpl.java:785) at org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXAResourceWrapper.connect(ActiveMQXAResourceWrapper.java:311) at org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXAResourceWrapper.getDelegate(ActiveMQXAResourceWrapper.java:239) at org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXAResourceWrapper.recover(ActiveMQXAResourceWrapper.java:69) at org.apache.activemq.artemis.service.extensions.xa.ActiveMQXAResourceWrapperImpl.recover(ActiveMQXAResourceWrapperImpl.java:106) at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.xaRecoverySecondPass(XARecoveryModule.java:770) at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.bottomUpRecovery(XARecoveryModule.java:461) at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.periodicWorkSecondPass(XARecoveryModule.java:218) at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.doWorkInternal(PeriodicRecovery.java:811) at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.run(PeriodicRecovery.java:377) 16:51:59,834 WARN [org.apache.activemq.artemis.service.extensions.xa.recovery] (Periodic Recovery) AMQ122008: XA Recovery can not connect to any broker on recovery [XARecoveryConfig [transportConfiguration=[TransportConfiguration(name=, factory=org-apache-activemq-artemis-core-remoting-impl-invm-InVMConnectorFactory) ?serverId=0], discoveryConfiguration=null, username=null, password=****, JNDI_NAME=java:/JmsXA]] 16:51:59,835 WARN [com.arjuna.ats.jta] (Periodic Recovery) ARJUNA016027: Local XARecoveryModule.xaRecovery got XA exception XAException.XAER_RMFAIL: javax.transaction.xa.XAException: Error trying to connect to any providers for xa recovery at org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXAResourceWrapper.getDelegate(ActiveMQXAResourceWrapper.java:258) at org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXAResourceWrapper.recover(ActiveMQXAResourceWrapper.java:69) at org.apache.activemq.artemis.service.extensions.xa.ActiveMQXAResourceWrapperImpl.recover(ActiveMQXAResourceWrapperImpl.java:106) at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.xaRecoverySecondPass(XARecoveryModule.java:770) at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.bottomUpRecovery(XARecoveryModule.java:461) at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.periodicWorkSecondPass(XARecoveryModule.java:218) at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.doWorkInternal(PeriodicRecovery.java:811) at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.run(PeriodicRecovery.java:377) Caused by: ActiveMQNotConnectedException[errorType=NOT_CONNECTED message=null] at org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXAResourceWrapper.connect(ActiveMQXAResourceWrapper.java:345) at org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXAResourceWrapper.getDelegate(ActiveMQXAResourceWrapper.java:239) ... 7 more 16:51:59,836 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0004: Stopping service jboss.ws.endpoint-publish.ws-t11-coordinator 16:51:59,836 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0004: Stopping service jboss.ws.endpoint-publish.ws-c11 16:51:59,836 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0004: Stopping service jboss.ws.endpoint-publish.ws-t11-client 16:51:59,836 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0004: Stopping service jboss.ws.endpoint-publish.ws-t11-participant 16:51:59,837 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0022: Unregistered web context: '/ws-t11-coordinator' from server 'default-server' 16:51:59,837 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0022: Unregistered web context: '/ws-c11' from server 'default-server' 16:51:59,837 INFO [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0022: Unregistered web context: '/ws-t11-participant' from server 'default-server' 16:51:59,837 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0022: Unregistered web context: '/ws-t11-client' from server 'default-server' 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorRPCService 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CoordinatorService 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithParticipantCompletionCoordinatorService 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-c11.deployment".ActivationService 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorRPCService 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-c11.deployment".RegistrationService 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorService 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorService 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithCoordinatorCompletionCoordinatorService 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".ParticipantService 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithCoordinatorCompletionParticipantService 16:51:59,838 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-client.deployment".TerminationParticipantService 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithParticipantCompletionParticipantService 16:51:59,838 INFO [org.jboss.as.webservices] (MSC service thread 1-8) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-client.deployment".CompletionInitiatorService 16:51:59,838 INFO [org.jboss.as.webservices] (MSC service thread 1-3) WFLYWS0004: Stopping service jboss.ws.endpoint-deploy.ws-c11 16:51:59,838 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0004: Stopping service jboss.ws.endpoint-deploy.ws-t11-coordinator 16:51:59,838 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0004: Stopping service jboss.ws.endpoint-deploy.ws-t11-client 16:51:59,838 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0004: Stopping service jboss.ws.endpoint-deploy.ws-t11-participant 16:51:59,838 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0019: Host default-host stopping 16:51:59,841 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0008: Undertow HTTP listener default suspending 16:51:59,841 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0008: Undertow HTTPS listener https suspending 16:51:59,841 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0007: Undertow HTTP listener default stopped, was bound to 127.0.0.1:8080 16:51:59,841 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0007: Undertow HTTPS listener https stopped, was bound to 127.0.0.1:8443 16:51:59,842 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0004: Undertow 1.4.4.Final stopping 16:51:59,849 INFO [org.jboss.as] (MSC service thread 1-6) WFLYSRV0050: WildFly Core 3.0.0.Alpha12 "Kenny" stopped in 7870ms Nov 15, 2016 4:52:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' Nov 15, 2016 4:52:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor shutdownJBoss INFO: jboss-as shutdown after sending shutdown command {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 21 11:08:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Mon, 21 Nov 2016 11:08:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2793) TestATSubordinateCrashDuringPrepare failure In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2793?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13325798#comment-13325798 ] Gytis Trikleris commented on JBTM-2793: --------------------------------------- First difference between this build and a successful build is that the following rule is executed multiple times in the failing build: {code} Rule.execute for decommissioned key {code} Second difference is that in the successful build "trace subordinate coordinator rollback" rule is only registered. In the failing build this rule is triggered: {code} 16:42:19,753 INFO [stdout] (Periodic Recovery) Rule.execute called for trace subordinate coordinator rollback 2_9 16:42:19,754 INFO [stdout] (Periodic Recovery) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper 16:42:19,754 INFO [stdout] (Periodic Recovery) calling installed(trace subordinate coordinator rollback 2) for helper classorg.jboss.byteman.rule.helper.Helper 16:42:19,754 INFO [stdout] (Periodic Recovery) Installed rule using default helper : trace subordinate coordinator rollback 2 16:42:19,754 INFO [stdout] (Periodic Recovery) trace subordinate coordinator rollback 2 execute 16:42:19,754 INFO [stdout] (Periodic Recovery) rule.debug{trace subordinate coordinator rollback 2} : rollback returned for subordinate coordinator BasicAction: 0:ffffac110007:-3ffa9bb3:582b3abd:19 status: ActionStatus.ABORTED {code} > TestATSubordinateCrashDuringPrepare failure > ------------------------------------------- > > Key: JBTM-2793 > URL: https://issues.jboss.org/browse/JBTM-2793 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: XTS > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Priority: Minor > > http://narayanaci1.eng.hst.ams2.redhat.com/job/narayana-codeCoverage/13/ > {code} > ------------------------------------------------------------------------------- > Test set: com.arjuna.qa.junit.TestATSubordinateCrashDuringPrepare > ------------------------------------------------------------------------------- > Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 630.486 sec <<< FAILURE! - in com.arjuna.qa.junit.TestATSubordinateCrashDuringPrepare > subordinateMultiParticipantPrepareAndCommitTest(com.arjuna.qa.junit.TestATSubordinateCrashDuringPrepare) Time elapsed: 630.486 sec <<< ERROR! > java.lang.RuntimeException: jboss-as was not killed by Byteman, this indicates a test failure > at com.arjuna.qa.junit.TestATSubordinateCrashDuringPrepare.subordinateMultiParticipantPrepareAndCommitTest(TestATSubordinateCrashDuringPrepare.java:17) > {code} > {code} > Starting arquillian with java VM args: -server -Xms64m -Xmx1024m -XX:MaxPermSize=512m -Dorg.jboss.byteman.verbose > -Djboss.modules.system.pkgs=org.jboss.byteman > -Dorg.jboss.byteman.transform.all > -javaagent:/home/jenkins/workspace/narayana-codeCoverage/XTS/localjunit/crash-recovery-tests/target/lib/byteman.jar=script:target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm,boot:target/lib/byteman.jar,listener:true isIPv6: false > Deleting: /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/tx-object-store > remove tx-object-store: /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/tx-object-store > remove /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/content/75 > remove /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/content/d8 > copy /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/docs/examples/configs/standalone-xts.xml to /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/configuration/standalone-xts.xml > Nov 15, 2016 4:41:31 PM com.arjuna.qa.junit.BaseCrashTest runTest > INFO: Test starting, server should be down: ATSubordinateCrashDuringPrepare:subordinate.MultiParticipantPrepareAndCommitTest > Nov 15, 2016 4:41:31 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController start > INFO: Manual starting of a server instance with overridden configuration. New configuration: {managementAddress=127.0.0.1, javaVmArguments=-server -Xms64m -Xmx1024m -XX:MaxPermSize=512m -Dorg.jboss.byteman.verbose > -Djboss.modules.system.pkgs=org.jboss.byteman > -Dorg.jboss.byteman.transform.all > -javaagent:/home/jenkins/workspace/narayana-codeCoverage/XTS/localjunit/crash-recovery-tests/target/lib/byteman.jar=script:target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm,boot:target/lib/byteman.jar,listener:true -Dorg.jboss.jbossts.xts.servicetests.XTSServiceTestName=org.jboss.jbossts.xts.servicetests.test.at.subordinate.MultiParticipantPrepareAndCommitTest, startupTimeoutInSeconds=60, serverConfig=standalone-xts.xml} > Nov 15, 2016 4:41:31 PM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal > WARNING: Bundles path is deprecated and no longer used. > Nov 15, 2016 4:41:31 PM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal > INFO: Starting container with: [/usr/lib/jvm/java-1.8.0-openjdk/bin/java, -D[Standalone], -server, -Xms64m, -Xmx1024m, -XX:MaxPermSize=512m, -Dorg.jboss.byteman.verbose, -Djboss.modules.system.pkgs=org.jboss.byteman, -Dorg.jboss.byteman.transform.all, -javaagent:/home/jenkins/workspace/narayana-codeCoverage/XTS/localjunit/crash-recovery-tests/target/lib/byteman.jar=script:target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm,boot:target/lib/byteman.jar,listener:true, -Dorg.jboss.jbossts.xts.servicetests.XTSServiceTestName=org.jboss.jbossts.xts.servicetests.test.at.subordinate.MultiParticipantPrepareAndCommitTest, -ea, -Djboss.home.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT, -Dorg.jboss.boot.log.file=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/log/server.log, -Dlogging.configuration=file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/configuration/logging.properties, -jar, /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/jboss-modules.jar, -mp, /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/modules, org.jboss.as.standalone, -Djboss.home.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT, -Djboss.server.base.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone, -Djboss.server.log.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/log, -Djboss.server.config.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/configuration, -c=standalone-xts.xml] > OpenJDK 64-Bit Server VM warning: ignoring option MaxPermSize=512m; support was removed in 8.0 > TransformListener() : accepting requests on localhost:9091 > 16:41:31,887 INFO [org.jboss.modules] (main) JBoss Modules version 1.6.0.Beta3 > 16:41:32,074 INFO [org.jboss.msc] (main) JBoss MSC version 1.2.7.Final > 16:41:32,173 INFO [org.jboss.as] (MSC service thread 1-6) WFLYSRV0049: WildFly Core 3.0.0.Alpha12 "Kenny" starting > 16:41:32,321 INFO [org.jboss.as.domain.management] (MSC service thread 1-8) WFLYDM0136: Registered OpenSSL provider > 16:41:33,042 INFO [org.jboss.as.controller.management-deprecated] (ServerService Thread Pool -- 13) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/subsystem=undertow/server=default-server/https-listener=https' 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:41:33,066 INFO [org.jboss.as.repository] (ServerService Thread Pool -- 25) WFLYDR0001: Content added at location /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/content/75/4c26bdb7730dd705b361ba38f432c0cfa843bd/content > 16:41:33,084 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http) > 16:41:33,095 INFO [org.xnio] (MSC service thread 1-4) XNIO version 3.4.1.Final > 16:41:33,101 INFO [org.xnio.nio] (MSC service thread 1-4) XNIO NIO Implementation Version 3.4.1.Final > 16:41:33,119 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 40) WFLYCLINF0001: Activating Infinispan subsystem. > 16:41:33,121 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 39) WFLYIO001: Worker 'default' has auto-configured to 48 core threads with 384 task threads based on your 24 available processors > 16:41:33,132 INFO [org.jboss.as.jsf] (ServerService Thread Pool -- 47) WFLYJSF0007: Activated the following JSF Implementations: [main] > 16:41:33,135 INFO [org.jboss.as.naming] (ServerService Thread Pool -- 51) WFLYNAM0001: Activating Naming Subsystem > 16:41:33,135 INFO [org.wildfly.iiop.openjdk] (ServerService Thread Pool -- 41) WFLYIIOP0001: Activating IIOP Subsystem > 16:41:33,135 WARN [org.jboss.as.txn] (ServerService Thread Pool -- 59) WFLYTX0013: Node identifier property is set to the default value. Please make sure it is unique. > 16:41:33,139 INFO [org.jboss.as.security] (ServerService Thread Pool -- 58) WFLYSEC0002: Activating Security Subsystem > 16:41:33,139 INFO [org.jboss.as.webservices] (ServerService Thread Pool -- 61) WFLYWS0002: Activating WebServices Extension > 16:41:33,150 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 35) WFLYJCA0004: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3) > 16:41:33,152 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-8) WFLYJCA0018: Started Driver service with driver-name = h2 > 16:41:33,155 INFO [org.jboss.as.connector] (MSC service thread 1-5) WFLYJCA0009: Starting JCA Subsystem (WildFly/IronJacamar 1.3.4.Final) > 16:41:33,158 INFO [org.jboss.as.security] (MSC service thread 1-8) WFLYSEC0001: Current PicketBox version=5.0.0.Alpha3 > 16:41:33,185 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : possible trigger for rule create participant deletes counter in class org.jboss.jbossts.XTSService > 16:41:33,191 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0003: Undertow 1.4.4.Final starting > 16:41:33,196 INFO [org.jboss.remoting] (MSC service thread 1-4) JBoss Remoting version 5.0.0.Beta7 > 16:41:33,201 INFO [org.jboss.as.mail.extension] (MSC service thread 1-8) WFLYMAIL0001: Bound mail session [java:jboss/mail/Default] > 16:41:33,201 INFO [org.jboss.as.naming] (MSC service thread 1-1) WFLYNAM0003: Starting Naming Service > 16:41:33,201 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : possible trigger for rule reset periodic recovery wait time in class com.arjuna.ats.arjuna.common.RecoveryEnvironmentBean > 16:41:33,220 INFO [stdout] (MSC service thread 1-2) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.common.RecoveryEnvironmentBean.getPeriodicRecoveryPeriod() int for rule reset periodic recovery wait time > 16:41:33,221 INFO [stdout] (ServerService Thread Pool -- 63) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.XTSService.start() void for rule create participant deletes counter > 16:41:33,237 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : inserted trigger for create participant deletes counter in class org.jboss.jbossts.XTSService > 16:41:33,238 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : possible trigger for rule open trace file in class org.jboss.jbossts.XTSService > 16:41:33,239 INFO [stdout] (ServerService Thread Pool -- 63) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.XTSService.start() void for rule open trace file > 16:41:33,241 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : inserted trigger for reset periodic recovery wait time in class com.arjuna.ats.arjuna.common.RecoveryEnvironmentBean > 16:41:33,243 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : inserted trigger for open trace file in class org.jboss.jbossts.XTSService > 16:41:33,260 INFO [org.wildfly.security] (MSC service thread 1-4) ELY00001: WildFly Elytron version 1.1.0.Beta13 > 16:41:33,278 INFO [org.jboss.as.ejb3] (MSC service thread 1-1) WFLYEJB0481: Strict pool slsb-strict-max-pool is using a max instance size of 384 (per class), which is derived from thread worker pool sizing. > 16:41:33,278 INFO [org.jboss.as.ejb3] (MSC service thread 1-7) WFLYEJB0482: Strict pool mdb-strict-max-pool is using a max instance size of 96 (per class), which is derived from the number of CPUs on this host. > 16:41:33,284 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 60) WFLYUT0014: Creating file handler for path '/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]'] > 16:41:33,286 INFO [stdout] (MSC service thread 1-2) Rule.execute called for reset periodic recovery wait time_0 > 16:41:33,289 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0012: Started server default-server. > 16:41:33,289 INFO [stdout] (MSC service thread 1-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:33,289 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0018: Host default-host starting > 16:41:33,289 INFO [stdout] (MSC service thread 1-2) calling activated() for helper class org.jboss.byteman.rule.helper.Helper > 16:41:33,290 INFO [stdout] (MSC service thread 1-2) Default helper activated > 16:41:33,291 INFO [stdout] (MSC service thread 1-2) calling installed(reset periodic recovery wait time) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:33,291 INFO [stdout] (MSC service thread 1-2) Installed rule using default helper : reset periodic recovery wait time > 16:41:33,291 INFO [stdout] (MSC service thread 1-2) reset periodic recovery wait time execute > 16:41:33,295 INFO [stdout] (MSC service thread 1-2) caught ReturnException > 16:41:33,322 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : possible trigger for rule trace TX save at prepare in class com.arjuna.ats.arjuna.coordinator.BasicAction > 16:41:33,351 INFO [stdout] (MSC service thread 1-2) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.coordinator.BasicAction.prepare(boolean) int for rule trace TX save at prepare > 16:41:33,355 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : inserted trigger for trace TX save at prepare in class com.arjuna.ats.arjuna.coordinator.BasicAction > 16:41:33,356 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:8080 > 16:41:33,360 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : possible trigger for rule trace remove committed state and exit JVM in class com.arjuna.ats.arjuna.coordinator.BasicAction > 16:41:33,379 INFO [stdout] (MSC service thread 1-2) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.coordinator.BasicAction.updateState() void for rule trace remove committed state and exit JVM > 16:41:33,382 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : inserted trigger for trace remove committed state and exit JVM in class com.arjuna.ats.arjuna.coordinator.BasicAction > 16:41:33,386 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : possible trigger for rule trace remove committed state in class com.arjuna.ats.arjuna.coordinator.BasicAction > 16:41:33,424 INFO [stdout] (MSC service thread 1-2) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.coordinator.BasicAction.updateState() void for rule trace remove committed state > 16:41:33,425 INFO [stdout] (MSC service thread 1-2) org.jboss.byteman.agent.Transformer : inserted trigger for trace remove committed state in class com.arjuna.ats.arjuna.coordinator.BasicAction > 16:41:33,612 INFO [org.wildfly.iiop.openjdk] (MSC service thread 1-8) WFLYIIOP0009: CORBA ORB Service started > 16:41:33,636 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-4) WFLYJCA0001: Bound data source [java:jboss/datasources/ExampleDS] > 16:41:33,646 INFO [org.jboss.as.patching] (MSC service thread 1-7) WFLYPAT0050: WildFly cumulative patch ID is: base, one-off patches include: none > 16:41:33,663 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-6) WFLYDS0013: Started FileSystemDeploymentService for directory /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/deployments > 16:41:33,668 INFO [org.jboss.as.server.deployment] (MSC service thread 1-6) WFLYSRV0027: Starting deployment of "restat-web-5.4.1.Final-SNAPSHOT.war" (runtime-name: "restat-web-5.4.1.Final-SNAPSHOT.war") > 16:41:33,700 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221000: live Message Broker is starting with configuration Broker Configuration (clustered=false,journalDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/journal,bindingsDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/bindings,largeMessagesDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/largemessages,pagingDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/paging) > 16:41:33,740 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221012: Using AIO Journal > 16:41:33,873 INFO [org.infinispan.factories.GlobalComponentRegistry] (MSC service thread 1-1) ISPN000128: Infinispan version: Infinispan 'Chakra' 8.2.4.Final > 16:41:33,959 WARN [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0088: HTTP/2 will not be enabled as TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 is not enabled. You may need to install JCE to enable strong ciphers to allow HTTP/2 to function. > 16:41:33,981 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0006: Undertow HTTPS listener https listening on 127.0.0.1:8443 > 16:41:34,003 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-1) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,004 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,004 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,004 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,004 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,005 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,005 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,005 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,005 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,007 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-1) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,007 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-1) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,007 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-4) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,007 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-1) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,008 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-4) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,055 INFO [org.jboss.ws.common.management] (MSC service thread 1-5) JBWS022052: Starting JBossWS 5.1.5.Final (Apache CXF 3.1.8) > 16:41:34,057 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-c11 > 16:41:34,057 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-t11-participant > 16:41:34,057 INFO [org.jboss.as.webservices] (MSC service thread 1-3) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-t11-client > 16:41:34,057 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-t11-coordinator > 16:41:34,060 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-server]. Adding protocol support for: CORE > 16:41:34,063 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-amqp-protocol]. Adding protocol support for: AMQP > 16:41:34,064 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-hornetq-protocol]. Adding protocol support for: HORNETQ > 16:41:34,065 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-stomp-protocol]. Adding protocol support for: STOMP > 16:41:34,102 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=TerminationParticipantService > address=http://localhost:8080/ws-t11-client/TerminationParticipantService > implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationParticipantPortTypeImpl > serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantService > portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:34,102 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-5) JBWS024061: Adding service endpoint metadata: id=ActivationService > address=http://localhost:8080/ws-c11/ActivationService > implementor=com.arjuna.webservices11.wscoor.sei.ActivationPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService > portName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:34,102 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CompletionCoordinatorService > address=http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorService > implementor=com.arjuna.webservices11.wsat.sei.CompletionCoordinatorPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorService > portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:34,102 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-6) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithCoordinatorCompletionParticipantService > address=http://localhost:8080/ws-t11-participant/BusinessAgreementWithCoordinatorCompletionParticipantService > implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionParticipantPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantService > portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:34,102 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=CompletionInitiatorService > address=http://localhost:8080/ws-t11-client/CompletionInitiatorService > implementor=com.arjuna.webservices11.wsat.sei.CompletionInitiatorPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorService > portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:34,103 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=TerminationCoordinatorService > address=http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorService > implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorPortTypeImpl > serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorService > portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:34,103 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-6) JBWS024061: Adding service endpoint metadata: id=ParticipantService > address=http://localhost:8080/ws-t11-participant/ParticipantService > implementor=com.arjuna.webservices11.wsat.sei.ParticipantPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService > portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:34,103 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-5) JBWS024061: Adding service endpoint metadata: id=RegistrationService > address=http://localhost:8080/ws-c11/RegistrationService > implementor=com.arjuna.webservices11.wscoor.sei.RegistrationPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService > portName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:34,103 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-6) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithParticipantCompletionParticipantService > address=http://localhost:8080/ws-t11-participant/BusinessAgreementWithParticipantCompletionParticipantService > implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantService > portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:34,103 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=TerminationCoordinatorRPCService > address=http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorRPCService > implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorRPCPortTypeImpl > serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypeImplService > portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypePort > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:34,103 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithCoordinatorCompletionCoordinatorService > address=http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithCoordinatorCompletionCoordinatorService > implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorService > portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:34,103 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithParticipantCompletionCoordinatorService > address=http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithParticipantCompletionCoordinatorService > implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorService > portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:34,104 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CoordinatorService > address=http://localhost:8080/ws-t11-coordinator/CoordinatorService > implementor=com.arjuna.webservices11.wsat.sei.CoordinatorPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService > portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:34,104 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CompletionCoordinatorRPCService > address=http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorRPCService > implementor=com.arjuna.webservices11.wsat.sei.CompletionCoordinatorRPCPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCService > portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:34,151 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) WFLYSRV0018: Deployment "deployment.restat-web-5.4.1.Final-SNAPSHOT.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice. > 16:41:34,152 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) WFLYSRV0018: Deployment "deployment.restat-web-5.4.1.Final-SNAPSHOT.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice. > 16:41:34,270 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-4) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor acceptor > 16:41:34,270 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-7) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor-throughput acceptor > 16:41:34,270 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-8) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor acceptor > 16:41:34,271 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-8) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor-throughput acceptor > 16:41:34,302 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-2) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,303 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-2) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:34,338 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221007: Server is now live > 16:41:34,338 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221001: Apache ActiveMQ Artemis Message Broker version 1.5.0 [default, nodeID=ef9290cb-ab4d-11e6-b97f-0242ac110007] > 16:41:34,340 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 69) AMQ221003: Deploying queue jms.queue.DLQ > 16:41:34,374 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221003: Deploying queue jms.queue.ExpiryQueue > 16:41:34,390 INFO [org.wildfly.extension.messaging-activemq] (ServerService Thread Pool -- 67) WFLYMSGAMQ0002: Bound messaging object to jndi name java:/ConnectionFactory > 16:41:34,391 INFO [org.wildfly.extension.messaging-activemq] (ServerService Thread Pool -- 68) WFLYMSGAMQ0002: Bound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory > 16:41:34,435 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-4) WFLYJCA0007: Registered connection factory java:/JmsXA > 16:41:34,474 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 65) WFLYUT0021: Registered web context: '/rest-tx' for server 'default-server' > 16:41:34,475 INFO [org.apache.activemq.artemis.ra] (MSC service thread 1-4) Resource adaptor started > 16:41:34,475 INFO [org.jboss.as.connector.services.resourceadapters.ResourceAdapterActivatorService$ResourceAdapterActivator] (MSC service thread 1-4) IJ020002: Deployed: file://RaActivatoractivemq-ra > 16:41:34,477 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-2) WFLYJCA0002: Bound JCA ConnectionFactory [java:/JmsXA] > 16:41:34,477 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-7) WFLYMSGAMQ0002: Bound messaging object to jndi name java:jboss/DefaultJMSConnectionFactory > 16:41:34,536 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-5) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService from class com.arjuna.webservices11.wscoor.sei.ActivationPortTypeImpl > 16:41:34,536 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantService from class com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationParticipantPortType > 16:41:34,536 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-6) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantService from class org.oasis_open.docs.ws_tx.wsba._2006._06.BusinessAgreementWithCoordinatorCompletionParticipantPortType > 16:41:34,536 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorService from class com.arjuna.webservices11.wsat.sei.CompletionCoordinatorPortTypeImpl > 16:41:34,949 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/ws-t11-client/TerminationParticipantService > 16:41:34,949 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-6) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/BusinessAgreementWithCoordinatorCompletionParticipantService > 16:41:34,949 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-5) Setting the server's publish address to be http://localhost:8080/ws-c11/ActivationService > 16:41:34,949 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorService > 16:41:35,055 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CompletionCoordinatorService.wsdl > 16:41:35,056 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-5) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-c11.deployment/ActivationService.wsdl > 16:41:35,056 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorService from class com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationCoordinatorPortType > 16:41:35,057 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-5) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from class com.arjuna.webservices11.wscoor.sei.RegistrationPortTypeImpl > 16:41:35,057 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-client.deployment/TerminationParticipantService.wsdl > 16:41:35,058 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorService from class com.arjuna.webservices11.wsat.sei.CompletionInitiatorPortTypeImpl > 16:41:35,060 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-6) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/BusinessAgreementWithCoordinatorCompletionParticipantService.wsdl > 16:41:35,060 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-6) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from class com.arjuna.webservices11.wsat.sei.ParticipantPortTypeImpl > 16:41:35,065 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorService > 16:41:35,070 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/ws-t11-client/CompletionInitiatorService > 16:41:35,073 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-6) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/ParticipantService > 16:41:35,073 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/TerminationCoordinatorService.wsdl > 16:41:35,074 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypeImplService from class com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorRPCPortTypeImpl > 16:41:35,075 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-5) Setting the server's publish address to be http://localhost:8080/ws-c11/RegistrationService > 16:41:35,076 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorRPCService > 16:41:35,078 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-client.deployment/CompletionInitiatorService.wsdl > 16:41:35,079 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-6) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/ParticipantService.wsdl > 16:41:35,080 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-6) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl > 16:41:35,080 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/TerminationCoordinatorRPCPortTypeImplService.wsdl > 16:41:35,081 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl > 16:41:35,083 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-5) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-c11.deployment/RegistrationService.wsdl > 16:41:35,085 INFO [org.jboss.as.webservices] (MSC service thread 1-3) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-client.deployment".CompletionInitiatorService > 16:41:35,085 INFO [org.jboss.as.webservices] (MSC service thread 1-8) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-client.deployment".TerminationParticipantService > 16:41:35,086 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-6) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/BusinessAgreementWithParticipantCompletionParticipantService > 16:41:35,086 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint."ws-c11.deployment".ActivationService > 16:41:35,086 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0003: Starting service jboss.ws.endpoint."ws-c11.deployment".RegistrationService > 16:41:35,091 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-t11-client > 16:41:35,091 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-c11 > 16:41:35,094 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-6) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/BusinessAgreementWithParticipantCompletionParticipantService.wsdl > 16:41:35,095 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0021: Registered web context: '/ws-t11-client' for server 'default-server' > 16:41:35,095 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0021: Registered web context: '/ws-c11' for server 'default-server' > 16:41:35,098 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithParticipantCompletionParticipantService > 16:41:35,098 INFO [org.jboss.as.webservices] (MSC service thread 1-8) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithCoordinatorCompletionParticipantService > 16:41:35,098 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".ParticipantService > 16:41:35,098 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithCoordinatorCompletionCoordinatorService > 16:41:35,099 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-t11-participant > 16:41:35,099 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0021: Registered web context: '/ws-t11-participant' for server 'default-server' > 16:41:35,106 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/BusinessAgreementWithCoordinatorCompletionCoordinatorService.wsdl > 16:41:35,107 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl > 16:41:35,112 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithParticipantCompletionCoordinatorService > 16:41:35,120 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/BusinessAgreementWithParticipantCompletionCoordinatorService.wsdl > 16:41:35,120 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from class com.arjuna.webservices11.wsat.sei.CoordinatorPortTypeImpl > 16:41:35,123 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CoordinatorService > 16:41:35,129 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CoordinatorService.wsdl > 16:41:35,130 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCService from class com.arjuna.webservices11.wsat.sei.CompletionCoordinatorRPCPortTypeImpl > 16:41:35,132 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorRPCService > 16:41:35,138 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CompletionCoordinatorRPCService.wsdl > 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorRPCService > 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-3) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CoordinatorService > 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorService > 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithParticipantCompletionCoordinatorService > 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithCoordinatorCompletionCoordinatorService > 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorRPCService > 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-8) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorService > 16:41:35,142 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-t11-coordinator > 16:41:35,143 INFO [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0021: Registered web context: '/ws-t11-coordinator' for server 'default-server' > 16:41:35,147 INFO [stdout] (MSC service thread 1-8) Rule.execute called for open trace file_2 > 16:41:35,148 INFO [stdout] (MSC service thread 1-8) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:35,148 INFO [stdout] (MSC service thread 1-8) calling installed(open trace file) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:35,148 INFO [stdout] (MSC service thread 1-8) Installed rule using default helper : open trace file > 16:41:35,148 INFO [stdout] (MSC service thread 1-8) open trace file execute > 16:41:35,149 INFO [stdout] (MSC service thread 1-8) Rule.execute called for create participant deletes counter_1 > 16:41:35,149 INFO [stdout] (MSC service thread 1-8) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:35,149 INFO [stdout] (MSC service thread 1-8) calling installed(create participant deletes counter) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:35,149 INFO [stdout] (MSC service thread 1-8) Installed rule using default helper : create participant deletes counter > 16:41:35,149 INFO [stdout] (MSC service thread 1-8) create participant deletes counter execute > 16:41:35,159 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : possible trigger for rule trace Participant send rollback in class com.arjuna.wst11.messaging.CoordinatorProcessorImpl > 16:41:35,160 INFO [stdout] (MSC service thread 1-8) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.CoordinatorProcessorImpl.prepared(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace Participant send rollback > 16:41:35,163 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : inserted trigger for trace Participant send rollback in class com.arjuna.wst11.messaging.CoordinatorProcessorImpl > 16:41:35,179 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate coordinator close in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator > 16:41:35,180 INFO [stdout] (MSC service thread 1-8) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator.rollback() void for rule trace subordinate coordinator close > 16:41:35,181 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate coordinator close in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator > 16:41:35,182 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate coordinator prepare in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator > 16:41:35,182 INFO [stdout] (MSC service thread 1-8) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator.prepare() int for rule trace subordinate coordinator prepare > 16:41:35,183 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate coordinator prepare in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator > 16:41:35,184 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate coordinator rollback 2 in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator > 16:41:35,185 INFO [stdout] (MSC service thread 1-8) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator.rollback() void for rule trace subordinate coordinator rollback 2 > 16:41:35,186 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate coordinator rollback 2 in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator > 16:41:35,197 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : possible trigger for rule trace delete participant and exit JVM in class org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple > 16:41:35,197 INFO [stdout] (MSC service thread 1-8) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple.deleteParticipantRecoveryRecord(java.lang.String) boolean for rule trace delete participant and exit JVM > 16:41:35,198 INFO [stdout] (MSC service thread 1-8) org.jboss.byteman.agent.Transformer : inserted trigger for trace delete participant and exit JVM in class org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple > 16:41:35,221 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-4) ARJUNA033013: OutboundBridgeRecoveryManager starting > 16:41:35,221 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-8) ARJUNA033006: InboundBridgeRecoveryManager starting > 16:41:35,235 INFO [org.jboss.as.server] (ServerService Thread Pool -- 36) WFLYSRV0010: Deployed "restat-web-5.4.1.Final-SNAPSHOT.war" (runtime-name : "restat-web-5.4.1.Final-SNAPSHOT.war") > 16:41:35,301 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:9990/management > 16:41:35,301 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:9990 > 16:41:35,301 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Core 3.0.0.Alpha12 "Kenny" started in 3688ms - Started 508 of 752 services (451 services are lazy, passive or on-demand) > 16:41:35,378 INFO [org.jboss.as.repository] (management-handler-thread - 1) WFLYDR0001: Content added at location /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/content/67/eecc8af4663400c3ea658c818ff35814a26f3a/content > 16:41:35,380 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) WFLYSRV0027: Starting deployment of "xtstest.war" (runtime-name: "xtstest.war") > 16:41:35,661 WARN [org.jboss.as.dependency.private] (MSC service thread 1-4) WFLYSRV0018: Deployment "deployment.xtstest.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice. > 16:41:35,675 INFO [org.jboss.weld.deployer] (MSC service thread 1-6) WFLYWELD0003: Processing weld deployment xtstest.war > 16:41:35,699 INFO [org.hibernate.validator.internal.util.Version] (MSC service thread 1-6) HV000001: Hibernate Validator 5.2.4.Final > 16:41:35,830 INFO [org.jboss.weld.Version] (MSC service thread 1-3) WELD-000900: 2.4.0 (Final) > 16:41:35,837 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_One > address=http://localhost:8080/xtstest/xtsservicetest1 > implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl > serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService > portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType > annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl > wsdlLocationOverride=null > mtomEnabled=false > 16:41:35,838 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_Two > address=http://localhost:8080/xtstest/xtsservicetest2 > implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl > serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService > portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType > annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl > wsdlLocationOverride=null > mtomEnabled=false > 16:41:35,838 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_Three > address=http://localhost:8080/xtstest/xtsservicetest3 > implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl > serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService > portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType > annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl > wsdlLocationOverride=null > mtomEnabled=false > 16:41:35,838 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Subordinate_Service_One > address=http://localhost:8080/xtstest/xtssubordinateservicetest1 > implementor=org.jboss.jbossts.xts.servicetests.service.subordinate.XTSSubordinateServiceTestPortTypeImpl > serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService > portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType > annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl > wsdlLocationOverride=null > mtomEnabled=false > 16:41:35,848 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl > 16:41:35,881 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest1 > 16:41:35,887 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl > 16:41:35,888 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl > 16:41:35,890 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest2 > 16:41:35,892 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl > 16:41:35,893 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl > 16:41:35,894 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest3 > 16:41:35,897 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl > 16:41:35,897 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl > 16:41:35,898 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/xtstest/xtssubordinateservicetest1 > 16:41:35,902 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl > 16:41:35,909 INFO [org.jboss.as.webservices] (MSC service thread 1-3) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_One > 16:41:35,910 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Two > 16:41:35,910 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Three > 16:41:35,910 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Subordinate_Service_One > 16:41:35,913 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:35,914 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:36,099 WARN [org.jboss.weld.Bootstrap] (MSC service thread 1-1) WELD-000169: Jandex cannot distinguish inner and static nested classes! Update Jandex to 2.0.3.Final version or newer to improve scanning performance. > 16:41:36,386 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (ServerService Thread Pool -- 13) Starting XTSServiceTestRunner > 16:41:36,386 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (ServerService Thread Pool -- 13) Starting XTS Service Test org.jboss.jbossts.xts.servicetests.test.at.subordinate.MultiParticipantPrepareAndCommitTest > 16:41:36,386 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (ServerService Thread Pool -- 13) Started XTSServiceTestRunner > 16:41:36,394 INFO [javax.enterprise.resource.webcontainer.jsf.config] (ServerService Thread Pool -- 13) Initializing Mojarra 2.2.13.SP1 20160303-1204 for context '/xtstest' > 16:41:36,784 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 13) WFLYUT0021: Registered web context: '/xtstest' for server 'default-server' > 16:41:36,811 INFO [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0010: Deployed "xtstest.war" (runtime-name : "xtstest.war") > Nov 15, 2016 4:41:36 PM org.jboss.remotingjmx.Util warnDeprecated > WARN: The protocol 'http-remoting-jmx' is deprecated, instead you should use 'remote+http'. > Nov 15, 2016 4:41:36 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController kill > INFO: Hard killing of a server instance > Nov 15, 2016 4:41:36 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: waiting for byteman to kill the server > Nov 15, 2016 4:41:36 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > 16:41:41,421 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Thread-123) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-activation-binding.wsdl > 16:41:41,431 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Thread-123) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-activation-binding.wsdl > 16:41:41,785 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Thread-123) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl > 16:41:41,817 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Thread-123) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: vfs:/content/xtstest.war/WEB-INF/classes/org/jboss/jbossts/xts/servicetests/generated/wsdl/xtsservicetests.wsdl > 16:41:41,862 INFO [stdout] (default task-3) service /xtsservicetest1 > 16:41:41,862 INFO [stdout] (default task-3) command enlistDurable > 16:41:41,862 INFO [stdout] (default task-3) command prepare > 16:41:41,862 INFO [stdout] (default task-3) command commit > 16:41:41,880 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (default task-3) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl > 16:41:41,901 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace Coordinator engine create in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:41:41,902 INFO [stdout] (default task-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.(java.lang.String,boolean,javax.xml.ws.wsaddressing.W3CEndpointReference,boolean,com.arjuna.webservices11.wsat.State) void for rule trace Coordinator engine create > 16:41:41,911 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace Coordinator engine create in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:41:41,912 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive Participant aborted in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:41:41,913 INFO [stdout] (default task-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.aborted(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive Participant aborted > 16:41:41,918 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive Participant aborted in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:41:41,919 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive participant prepared in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:41:41,920 INFO [stdout] (default task-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.prepared(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive participant prepared > 16:41:41,926 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive participant prepared in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:41:41,927 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send participant prepare in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:41:41,928 INFO [stdout] (default task-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.prepare() com.arjuna.webservices11.wsat.State for rule trace send participant prepare > 16:41:41,933 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace send participant prepare in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:41:41,934 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send Participant rollback in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:41:41,935 INFO [stdout] (default task-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.rollback() com.arjuna.webservices11.wsat.State for rule trace send Participant rollback > 16:41:41,940 INFO [stdout] (default task-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace send Participant rollback in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:41:41,942 INFO [stdout] (default task-4) Rule.execute called for trace Coordinator engine create_11 > 16:41:41,943 INFO [stdout] (default task-4) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:41,943 INFO [stdout] (default task-4) calling installed(trace Coordinator engine create) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:41,943 INFO [stdout] (default task-4) Installed rule using default helper : trace Coordinator engine create > 16:41:41,943 INFO [stdout] (default task-4) trace Coordinator engine create execute > 16:41:41,955 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule trace Participant create in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:41:41,956 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.(com.arjuna.wst.Participant,java.lang.String,com.arjuna.webservices11.wsat.State,javax.xml.ws.wsaddressing.W3CEndpointReference,boolean) void for rule trace Participant create > 16:41:41,968 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for trace Participant create in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:41:41,969 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive participant prepare in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:41:41,970 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.prepare(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive participant prepare > 16:41:41,976 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive participant prepare in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:41:41,978 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send Participant prepared in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:41:41,984 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.sendPrepared(boolean) void for rule trace send Participant prepared > 16:41:41,984 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for trace send Participant prepared in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:41:41,986 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive Participant rollback in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:41:41,986 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.rollback(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive Participant rollback > 16:41:41,993 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive Participant rollback in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:41:41,994 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send Participant aborted in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:41:42,000 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.sendAborted() void for rule trace send Participant aborted > 16:41:42,000 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for trace send Participant aborted in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:41:42,002 INFO [stdout] (default task-3) Rule.execute called for trace Participant create_16 > 16:41:42,002 INFO [stdout] (default task-3) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:42,002 INFO [stdout] (default task-3) calling installed(trace Participant create) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:42,002 INFO [stdout] (default task-3) Installed rule using default helper : trace Participant create > 16:41:42,002 INFO [stdout] (default task-3) trace Participant create execute > 16:41:42,029 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate participant stub rollback in class com.arjuna.wst11.stub.SubordinateDurable2PCStub > 16:41:42,030 INFO [stdout] (default task-5) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.stub.SubordinateDurable2PCStub.rollback() void for rule trace subordinate participant stub rollback > 16:41:42,031 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate participant stub rollback in class com.arjuna.wst11.stub.SubordinateDurable2PCStub > 16:41:42,031 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate participant stub prepare in class com.arjuna.wst11.stub.SubordinateDurable2PCStub > 16:41:42,031 INFO [stdout] (default task-5) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.stub.SubordinateDurable2PCStub.prepare() com.arjuna.wst.Vote for rule trace subordinate participant stub prepare > 16:41:42,032 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate participant stub prepare in class com.arjuna.wst11.stub.SubordinateDurable2PCStub > 16:41:42,032 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate participant stub prepare 2 in class com.arjuna.wst11.stub.SubordinateDurable2PCStub > 16:41:42,033 INFO [stdout] (default task-5) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.stub.SubordinateDurable2PCStub.prepare() com.arjuna.wst.Vote for rule trace subordinate participant stub prepare 2 > 16:41:42,033 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate participant stub prepare 2 in class com.arjuna.wst11.stub.SubordinateDurable2PCStub > 16:41:42,034 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate participant stub rollback forward in class com.arjuna.wst11.stub.SubordinateDurable2PCStub > 16:41:42,034 INFO [stdout] (default task-5) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.stub.SubordinateDurable2PCStub.rollback() void for rule trace subordinate participant stub rollback forward > 16:41:42,035 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate participant stub rollback forward in class com.arjuna.wst11.stub.SubordinateDurable2PCStub > 16:41:42,036 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate participant stub rollback with no coordinator in class com.arjuna.wst11.stub.SubordinateDurable2PCStub > 16:41:42,036 INFO [stdout] (default task-5) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.stub.SubordinateDurable2PCStub.rollback() void for rule trace subordinate participant stub rollback with no coordinator > 16:41:42,037 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate participant stub rollback with no coordinator in class com.arjuna.wst11.stub.SubordinateDurable2PCStub > 16:41:42,037 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate participant stub rollback with unactivated coordinator in class com.arjuna.wst11.stub.SubordinateDurable2PCStub > 16:41:42,038 INFO [stdout] (default task-5) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.stub.SubordinateDurable2PCStub.rollback() void for rule trace subordinate participant stub rollback with unactivated coordinator > 16:41:42,038 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate participant stub rollback with unactivated coordinator in class com.arjuna.wst11.stub.SubordinateDurable2PCStub > 16:41:42,039 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate participant stub rollback return in class com.arjuna.wst11.stub.SubordinateDurable2PCStub > 16:41:42,039 INFO [stdout] (default task-5) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.stub.SubordinateDurable2PCStub.rollback() void for rule trace subordinate participant stub rollback return > 16:41:42,040 INFO [stdout] (default task-5) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate participant stub rollback return in class com.arjuna.wst11.stub.SubordinateDurable2PCStub > 16:41:42,055 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (default task-5) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl > 16:41:42,071 INFO [stdout] (default task-6) Rule.execute called for trace Coordinator engine create_11 > 16:41:42,072 INFO [stdout] (default task-6) trace Coordinator engine create execute > 16:41:42,081 INFO [stdout] (default task-5) Rule.execute called for trace Participant create_16 > 16:41:42,082 INFO [stdout] (default task-5) trace Participant create execute > 16:41:42,091 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (default task-5) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl > 16:41:42,104 INFO [stdout] (default task-7) Rule.execute called for trace Coordinator engine create_11 > 16:41:42,105 INFO [stdout] (default task-7) trace Coordinator engine create execute > 16:41:42,112 INFO [stdout] (default task-5) Rule.execute called for trace Participant create_16 > 16:41:42,112 INFO [stdout] (default task-5) trace Participant create execute > 16:41:42,116 INFO [stdout] (default task-5) service /xtssubordinateservicetest1 > 16:41:42,116 INFO [stdout] (default task-5) command enlistDurable > 16:41:42,116 INFO [stdout] (default task-5) command prepare > 16:41:42,116 INFO [stdout] (default task-5) command commit > 16:41:42,128 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (default task-5) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl > 16:41:42,140 INFO [stdout] (default task-8) Rule.execute called for trace Coordinator engine create_11 > 16:41:42,141 INFO [stdout] (default task-8) trace Coordinator engine create execute > 16:41:42,148 INFO [stdout] (default task-5) Rule.execute called for trace Participant create_16 > 16:41:42,148 INFO [stdout] (default task-5) trace Participant create execute > 16:41:42,169 INFO [stdout] (default task-9) service /xtssubordinateservicetest1 > 16:41:42,170 INFO [stdout] (default task-9) command enlistDurable > 16:41:42,170 INFO [stdout] (default task-9) command prepare > 16:41:42,170 INFO [stdout] (default task-9) command commit > 16:41:42,181 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (default task-9) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl > 16:41:42,193 INFO [stdout] (default task-10) Rule.execute called for trace Coordinator engine create_11 > 16:41:42,193 INFO [stdout] (default task-10) trace Coordinator engine create execute > 16:41:42,199 INFO [stdout] (default task-9) Rule.execute called for trace Participant create_16 > 16:41:42,199 INFO [stdout] (default task-9) trace Participant create execute > 16:41:42,220 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Thread-123) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-completion-coordinator-binding.wsdl > 16:41:42,254 INFO [stdout] (TaskWorker-1) Rule.execute called for trace send participant prepare_14 > 16:41:42,255 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:42,255 INFO [stdout] (TaskWorker-1) calling installed(trace send participant prepare) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:42,255 INFO [stdout] (TaskWorker-1) Installed rule using default helper : trace send participant prepare > 16:41:42,255 INFO [stdout] (TaskWorker-1) trace send participant prepare execute > 16:41:42,255 INFO [stdout] (TaskWorker-1) rule.debug{trace send participant prepare} : prepare sent for Coordinator engine V0:ffffac110007:-3ffa9bb3:582b3abd:1b > 16:41:42,274 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl > 16:41:42,300 INFO [stdout] (TaskWorker-2) Rule.execute called for trace receive participant prepare_17 > 16:41:42,301 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:42,301 INFO [stdout] (TaskWorker-2) calling installed(trace receive participant prepare) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:42,301 INFO [stdout] (TaskWorker-2) Installed rule using default helper : trace receive participant prepare > 16:41:42,301 INFO [stdout] (TaskWorker-2) trace receive participant prepare execute > 16:41:42,301 INFO [stdout] (TaskWorker-2) rule.debug{trace receive participant prepare} : prepare received for participant org.jboss.jbossts.xts.at.subordinate.participant.0:ffffac110007:-3ffa9bb3:582b3abd:19_V > 16:41:42,302 INFO [stdout] (TaskWorker-2) Rule.execute called for trace send Participant prepared_18 > 16:41:42,303 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:42,303 INFO [stdout] (TaskWorker-2) calling installed(trace send Participant prepared) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:42,303 INFO [stdout] (TaskWorker-2) Installed rule using default helper : trace send Participant prepared > 16:41:42,303 INFO [stdout] (TaskWorker-2) trace send Participant prepared execute > 16:41:42,303 INFO [stdout] (TaskWorker-2) rule.debug{trace send Participant prepared} : prepared sent for Participant org.jboss.jbossts.xts.at.subordinate.participant.0:ffffac110007:-3ffa9bb3:582b3abd:19_V > 16:41:42,321 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl > 16:41:42,342 INFO [stdout] (TaskWorker-2) Rule.execute called for trace receive participant prepared_13 > 16:41:42,342 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:42,342 INFO [stdout] (TaskWorker-2) calling installed(trace receive participant prepared) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:42,342 INFO [stdout] (TaskWorker-2) Installed rule using default helper : trace receive participant prepared > 16:41:42,342 INFO [stdout] (TaskWorker-2) trace receive participant prepared execute > 16:41:42,342 INFO [stdout] (TaskWorker-2) rule.debug{trace receive participant prepared} : prepared received for Coordinator engine V0:ffffac110007:-3ffa9bb3:582b3abd:1b > 16:41:42,343 INFO [stdout] (TaskWorker-1) Rule.execute called for trace send participant prepare_14 > 16:41:42,343 INFO [stdout] (TaskWorker-1) trace send participant prepare execute > 16:41:42,343 INFO [stdout] (TaskWorker-1) rule.debug{trace send participant prepare} : prepare sent for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:16 > 16:41:42,352 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl > 16:41:42,367 INFO [stdout] (TaskWorker-2) Rule.execute called for trace receive participant prepare_17 > 16:41:42,368 INFO [stdout] (TaskWorker-2) trace receive participant prepare execute > 16:41:42,368 INFO [stdout] (TaskWorker-2) rule.debug{trace receive participant prepare} : prepare received for participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.0 > 16:41:42,396 INFO [stdout] (TaskWorker-2) Rule.execute called for trace send Participant prepared_18 > 16:41:42,396 INFO [stdout] (TaskWorker-2) trace send Participant prepared execute > 16:41:42,396 INFO [stdout] (TaskWorker-2) rule.debug{trace send Participant prepared} : prepared sent for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.0 > 16:41:42,404 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl > 16:41:42,422 INFO [stdout] (TaskWorker-2) Rule.execute called for trace receive participant prepared_13 > 16:41:42,422 INFO [stdout] (TaskWorker-2) trace receive participant prepared execute > 16:41:42,422 INFO [stdout] (TaskWorker-2) rule.debug{trace receive participant prepared} : prepared received for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:16 > 16:41:42,423 INFO [stdout] (TaskWorker-1) Rule.execute called for trace send participant prepare_14 > 16:41:42,423 INFO [stdout] (TaskWorker-1) trace send participant prepare execute > 16:41:42,423 INFO [stdout] (TaskWorker-1) rule.debug{trace send participant prepare} : prepare sent for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:1d > 16:41:42,430 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl > 16:41:42,445 INFO [stdout] (TaskWorker-2) Rule.execute called for trace receive participant prepare_17 > 16:41:42,445 INFO [stdout] (TaskWorker-2) trace receive participant prepare execute > 16:41:42,446 INFO [stdout] (TaskWorker-2) rule.debug{trace receive participant prepare} : prepare received for participant org.jboss.jbossts.xts.at.subordinate.participant.0:ffffac110007:-3ffa9bb3:582b3abd:19_D > 16:41:42,446 INFO [stdout] (TaskWorker-2) Rule.execute called for trace subordinate participant stub prepare_22 > 16:41:42,446 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:42,446 INFO [stdout] (TaskWorker-2) calling installed(trace subordinate participant stub prepare) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:42,446 INFO [stdout] (TaskWorker-2) Installed rule using default helper : trace subordinate participant stub prepare > 16:41:42,446 INFO [stdout] (TaskWorker-2) trace subordinate participant stub prepare execute > 16:41:42,446 INFO [stdout] (TaskWorker-2) rule.debug{trace subordinate participant stub prepare} : prepare called for pseudo-participant com.arjuna.wst11.stub.SubordinateDurable2PCStub at 422a3fd3 > 16:41:42,446 INFO [stdout] (TaskWorker-2) Rule.execute called for trace subordinate coordinator prepare_8 > 16:41:42,447 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:42,447 INFO [stdout] (TaskWorker-2) calling installed(trace subordinate coordinator prepare) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:42,447 INFO [stdout] (TaskWorker-2) Installed rule using default helper : trace subordinate coordinator prepare > 16:41:42,447 INFO [stdout] (TaskWorker-2) trace subordinate coordinator prepare execute > 16:41:42,447 INFO [stdout] (TaskWorker-2) rule.debug{trace subordinate coordinator prepare} : prepare for subordinate transaction 0:ffffac110007:-3ffa9bb3:582b3abd:19 > 16:41:42,447 INFO [stdout] (TaskWorker-2) Rule.execute called for trace send participant prepare_14 > 16:41:42,448 INFO [stdout] (TaskWorker-2) trace send participant prepare execute > 16:41:42,448 INFO [stdout] (TaskWorker-2) rule.debug{trace send participant prepare} : prepare sent for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:20 > 16:41:42,456 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl > 16:41:42,471 INFO [stdout] (TaskWorker-3) Rule.execute called for trace receive participant prepare_17 > 16:41:42,471 INFO [stdout] (TaskWorker-3) trace receive participant prepare execute > 16:41:42,471 INFO [stdout] (TaskWorker-3) rule.debug{trace receive participant prepare} : prepare received for participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.1 > 16:41:42,706 INFO [stdout] (TaskWorker-3) Rule.execute called for trace send Participant prepared_18 > 16:41:42,707 INFO [stdout] (TaskWorker-3) trace send Participant prepared execute > 16:41:42,707 INFO [stdout] (TaskWorker-3) rule.debug{trace send Participant prepared} : prepared sent for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.1 > 16:41:42,714 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-3) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl > 16:41:42,729 INFO [stdout] (TaskWorker-3) Rule.execute called for trace receive participant prepared_13 > 16:41:42,729 INFO [stdout] (TaskWorker-3) trace receive participant prepared execute > 16:41:42,729 INFO [stdout] (TaskWorker-3) rule.debug{trace receive participant prepared} : prepared received for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:20 > 16:41:42,730 INFO [stdout] (TaskWorker-2) Rule.execute called for trace send participant prepare_14 > 16:41:42,730 INFO [stdout] (TaskWorker-2) trace send participant prepare execute > 16:41:42,730 INFO [stdout] (TaskWorker-2) rule.debug{trace send participant prepare} : prepare sent for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:23 > 16:41:42,739 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl > 16:41:42,751 INFO [stdout] (TaskWorker-3) Rule.execute called for trace receive participant prepare_17 > 16:41:42,751 INFO [stdout] (TaskWorker-3) trace receive participant prepare execute > 16:41:42,751 INFO [stdout] (TaskWorker-3) rule.debug{trace receive participant prepare} : prepare received for participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.2 > 16:41:42,753 INFO [stdout] (TaskWorker-3) Rule.execute called for trace send Participant prepared_18 > 16:41:42,753 INFO [stdout] (TaskWorker-3) trace send Participant prepared execute > 16:41:42,753 INFO [stdout] (TaskWorker-3) rule.debug{trace send Participant prepared} : prepared sent for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.2 > 16:41:42,759 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-3) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl > 16:41:42,773 INFO [stdout] (TaskWorker-3) Rule.execute called for trace receive participant prepared_13 > 16:41:42,773 INFO [stdout] (TaskWorker-3) trace receive participant prepared execute > 16:41:42,774 INFO [stdout] (TaskWorker-3) rule.debug{trace receive participant prepared} : prepared received for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:23 > 16:41:42,777 INFO [stdout] (TaskWorker-2) Rule.execute called for trace TX save at prepare_3 > 16:41:42,778 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:42,778 INFO [stdout] (TaskWorker-2) calling installed(trace TX save at prepare) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:42,778 INFO [stdout] (TaskWorker-2) Installed rule using default helper : trace TX save at prepare > 16:41:42,778 INFO [stdout] (TaskWorker-2) trace TX save at prepare execute > 16:41:42,778 INFO [stdout] (TaskWorker-2) rule.debug{trace TX save at prepare} : saved to disk transaction 0:ffffac110007:-3ffa9bb3:582b3abd:19 > 16:41:42,782 INFO [stdout] (TaskWorker-2) Rule.execute called for trace subordinate participant stub prepare 2_23 > 16:41:42,782 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:42,782 INFO [stdout] (TaskWorker-2) calling installed(trace subordinate participant stub prepare 2) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:42,782 INFO [stdout] (TaskWorker-2) Installed rule using default helper : trace subordinate participant stub prepare 2 > 16:41:42,782 INFO [stdout] (TaskWorker-2) trace subordinate participant stub prepare 2 execute > 16:41:42,782 INFO [stdout] (TaskWorker-2) rule.debug{trace subordinate participant stub prepare 2} : JVM exit > Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep '\[java\] '`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as killed by byteman scirpt > Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommand > INFO: Executing shell command: 'mkdir target/surefire-reports/processes' > std error mkdir: cannot create directory 'target/surefire-reports/processes': File exists > Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.BaseServerKillProcessor dumpStream > INFO: Execution result: 'mkdir: cannot create directory 'target/surefire-reports/processes': File exists' > Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommand > INFO: Executing shell command: 'ps aux > target/surefire-reports/processes/null:null_12.txt' > Nov 15, 2016 4:41:46 PM com.arjuna.qa.extension.BaseServerKillProcessor dumpProcesses > INFO: Logged current running processes to: target/surefire-reports/processes/null:null_12.txt > Nov 15, 2016 4:41:46 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController start > INFO: Manual starting of a server instance with overridden configuration. New configuration: {managementAddress=127.0.0.1, javaVmArguments=-server -Xms64m -Xmx1024m -XX:MaxPermSize=512m -Dorg.jboss.byteman.verbose > -Djboss.modules.system.pkgs=org.jboss.byteman > -Dorg.jboss.byteman.transform.all > -javaagent:/home/jenkins/workspace/narayana-codeCoverage/XTS/localjunit/crash-recovery-tests/target/lib/byteman.jar=script:target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm,boot:target/lib/byteman.jar,listener:true , startupTimeoutInSeconds=60, serverConfig=standalone-xts.xml} > Nov 15, 2016 4:41:46 PM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal > WARNING: Bundles path is deprecated and no longer used. > Nov 15, 2016 4:41:46 PM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal > INFO: Starting container with: [/usr/lib/jvm/java-1.8.0-openjdk/bin/java, -D[Standalone], -server, -Xms64m, -Xmx1024m, -XX:MaxPermSize=512m, -Dorg.jboss.byteman.verbose, -Djboss.modules.system.pkgs=org.jboss.byteman, -Dorg.jboss.byteman.transform.all, -javaagent:/home/jenkins/workspace/narayana-codeCoverage/XTS/localjunit/crash-recovery-tests/target/lib/byteman.jar=script:target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm,boot:target/lib/byteman.jar,listener:true, -ea, -Djboss.home.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT, -Dorg.jboss.boot.log.file=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/log/server.log, -Dlogging.configuration=file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/configuration/logging.properties, -jar, /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/jboss-modules.jar, -mp, /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/modules, org.jboss.as.standalone, -Djboss.home.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT, -Djboss.server.base.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone, -Djboss.server.log.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/log, -Djboss.server.config.dir=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/configuration, -c=standalone-xts.xml] > OpenJDK 64-Bit Server VM warning: ignoring option MaxPermSize=512m; support was removed in 8.0 > TransformListener() : accepting requests on localhost:9091 > 16:41:47,298 INFO [org.jboss.modules] (main) JBoss Modules version 1.6.0.Beta3 > 16:41:47,473 INFO [org.jboss.msc] (main) JBoss MSC version 1.2.7.Final > 16:41:47,565 INFO [org.jboss.as] (MSC service thread 1-7) WFLYSRV0049: WildFly Core 3.0.0.Alpha12 "Kenny" starting > 16:41:47,703 INFO [org.jboss.as.domain.management] (MSC service thread 1-1) WFLYDM0136: Registered OpenSSL provider > 16:41:48,403 INFO [org.jboss.as.controller.management-deprecated] (ServerService Thread Pool -- 7) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/subsystem=undertow/server=default-server/https-listener=https' 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:41:48,449 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http) > 16:41:48,460 INFO [org.xnio] (MSC service thread 1-8) XNIO version 3.4.1.Final > 16:41:48,465 INFO [org.xnio.nio] (MSC service thread 1-8) XNIO NIO Implementation Version 3.4.1.Final > 16:41:48,483 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 40) WFLYCLINF0001: Activating Infinispan subsystem. > 16:41:48,484 INFO [org.wildfly.iiop.openjdk] (ServerService Thread Pool -- 41) WFLYIIOP0001: Activating IIOP Subsystem > 16:41:48,485 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 39) WFLYIO001: Worker 'default' has auto-configured to 48 core threads with 384 task threads based on your 24 available processors > 16:41:48,487 INFO [org.jboss.as.jsf] (ServerService Thread Pool -- 47) WFLYJSF0007: Activated the following JSF Implementations: [main] > 16:41:48,493 INFO [org.jboss.as.connector] (MSC service thread 1-2) WFLYJCA0009: Starting JCA Subsystem (WildFly/IronJacamar 1.3.4.Final) > 16:41:48,536 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 35) WFLYJCA0004: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3) > 16:41:48,537 INFO [org.jboss.as.naming] (ServerService Thread Pool -- 51) WFLYNAM0001: Activating Naming Subsystem > 16:41:48,540 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-6) WFLYJCA0018: Started Driver service with driver-name = h2 > 16:41:48,550 WARN [org.jboss.as.txn] (ServerService Thread Pool -- 59) WFLYTX0013: Node identifier property is set to the default value. Please make sure it is unique. > 16:41:48,557 INFO [org.jboss.as.webservices] (ServerService Thread Pool -- 61) WFLYWS0002: Activating WebServices Extension > 16:41:48,558 INFO [org.jboss.as.security] (ServerService Thread Pool -- 58) WFLYSEC0002: Activating Security Subsystem > 16:41:48,560 INFO [org.jboss.as.security] (MSC service thread 1-7) WFLYSEC0001: Current PicketBox version=5.0.0.Alpha3 > 16:41:48,599 INFO [org.wildfly.extension.undertow] (MSC service thread 1-4) WFLYUT0003: Undertow 1.4.4.Final starting > 16:41:48,602 INFO [org.jboss.as.naming] (MSC service thread 1-4) WFLYNAM0003: Starting Naming Service > 16:41:48,603 INFO [org.jboss.as.mail.extension] (MSC service thread 1-7) WFLYMAIL0001: Bound mail session [java:jboss/mail/Default] > 16:41:48,616 INFO [org.jboss.remoting] (MSC service thread 1-8) JBoss Remoting version 5.0.0.Beta7 > 16:41:48,636 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : possible trigger for rule create participant deletes counter in class org.jboss.jbossts.XTSService > 16:41:48,663 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : possible trigger for rule reset periodic recovery wait time in class com.arjuna.ats.arjuna.common.RecoveryEnvironmentBean > 16:41:48,675 INFO [stdout] (MSC service thread 1-7) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.common.RecoveryEnvironmentBean.getPeriodicRecoveryPeriod() int for rule reset periodic recovery wait time > 16:41:48,676 INFO [stdout] (ServerService Thread Pool -- 63) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.XTSService.start() void for rule create participant deletes counter > 16:41:48,684 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : inserted trigger for reset periodic recovery wait time in class com.arjuna.ats.arjuna.common.RecoveryEnvironmentBean > 16:41:48,691 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : inserted trigger for create participant deletes counter in class org.jboss.jbossts.XTSService > 16:41:48,693 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : possible trigger for rule open trace file in class org.jboss.jbossts.XTSService > 16:41:48,695 INFO [stdout] (ServerService Thread Pool -- 63) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.XTSService.start() void for rule open trace file > 16:41:48,699 INFO [stdout] (ServerService Thread Pool -- 63) org.jboss.byteman.agent.Transformer : inserted trigger for open trace file in class org.jboss.jbossts.XTSService > 16:41:48,707 INFO [org.wildfly.security] (MSC service thread 1-8) ELY00001: WildFly Elytron version 1.1.0.Beta13 > 16:41:48,710 INFO [org.jboss.as.ejb3] (MSC service thread 1-1) WFLYEJB0482: Strict pool mdb-strict-max-pool is using a max instance size of 96 (per class), which is derived from the number of CPUs on this host. > 16:41:48,710 INFO [org.jboss.as.ejb3] (MSC service thread 1-3) WFLYEJB0481: Strict pool slsb-strict-max-pool is using a max instance size of 384 (per class), which is derived from thread worker pool sizing. > 16:41:48,723 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 60) WFLYUT0014: Creating file handler for path '/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]'] > 16:41:48,730 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0012: Started server default-server. > 16:41:48,731 INFO [stdout] (MSC service thread 1-7) Rule.execute called for reset periodic recovery wait time_1 > 16:41:48,731 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0018: Host default-host starting > 16:41:48,733 INFO [stdout] (MSC service thread 1-7) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:48,735 INFO [stdout] (MSC service thread 1-7) calling activated() for helper class org.jboss.byteman.rule.helper.Helper > 16:41:48,735 INFO [stdout] (MSC service thread 1-7) Default helper activated > 16:41:48,735 INFO [stdout] (MSC service thread 1-7) calling installed(reset periodic recovery wait time) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:48,736 INFO [stdout] (MSC service thread 1-7) Installed rule using default helper : reset periodic recovery wait time > 16:41:48,736 INFO [stdout] (MSC service thread 1-7) reset periodic recovery wait time execute > 16:41:48,736 INFO [stdout] (MSC service thread 1-7) caught ReturnException > 16:41:48,761 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : possible trigger for rule trace TX save at prepare in class com.arjuna.ats.arjuna.coordinator.BasicAction > 16:41:48,790 INFO [stdout] (MSC service thread 1-7) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.coordinator.BasicAction.prepare(boolean) int for rule trace TX save at prepare > 16:41:48,794 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : inserted trigger for trace TX save at prepare in class com.arjuna.ats.arjuna.coordinator.BasicAction > 16:41:48,794 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:8080 > 16:41:48,799 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : possible trigger for rule trace remove committed state and exit JVM in class com.arjuna.ats.arjuna.coordinator.BasicAction > 16:41:48,817 INFO [stdout] (MSC service thread 1-7) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.coordinator.BasicAction.updateState() void for rule trace remove committed state and exit JVM > 16:41:48,818 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : inserted trigger for trace remove committed state and exit JVM in class com.arjuna.ats.arjuna.coordinator.BasicAction > 16:41:48,822 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : possible trigger for rule trace remove committed state in class com.arjuna.ats.arjuna.coordinator.BasicAction > 16:41:48,840 INFO [stdout] (MSC service thread 1-7) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.ats.arjuna.coordinator.BasicAction.updateState() void for rule trace remove committed state > 16:41:48,843 INFO [stdout] (MSC service thread 1-7) org.jboss.byteman.agent.Transformer : inserted trigger for trace remove committed state in class com.arjuna.ats.arjuna.coordinator.BasicAction > 16:41:48,923 INFO [org.wildfly.iiop.openjdk] (MSC service thread 1-6) WFLYIIOP0009: CORBA ORB Service started > 16:41:49,091 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-3) WFLYJCA0001: Bound data source [java:jboss/datasources/ExampleDS] > 16:41:49,106 INFO [org.jboss.as.patching] (MSC service thread 1-4) WFLYPAT0050: WildFly cumulative patch ID is: base, one-off patches include: none > 16:41:49,145 INFO [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0027: Starting deployment of "restat-web-5.4.1.Final-SNAPSHOT.war" (runtime-name: "restat-web-5.4.1.Final-SNAPSHOT.war") > 16:41:49,147 INFO [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0027: Starting deployment of "xtstest.war" (runtime-name: "xtstest.war") > 16:41:49,148 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-3) WFLYDS0013: Started FileSystemDeploymentService for directory /home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/deployments > 16:41:49,324 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221000: live Message Broker is starting with configuration Broker Configuration (clustered=false,journalDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/journal,bindingsDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/bindings,largeMessagesDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/largemessages,pagingDirectory=/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/activemq/paging) > 16:41:49,375 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221012: Using AIO Journal > 16:41:49,389 INFO [org.infinispan.factories.GlobalComponentRegistry] (MSC service thread 1-5) ISPN000128: Infinispan version: Infinispan 'Chakra' 8.2.4.Final > 16:41:49,429 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-5) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,430 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-4) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,430 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-8) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,431 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-8) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,431 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-5) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,432 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,432 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,433 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-4) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,434 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-4) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,434 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,434 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,435 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-4) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,442 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-5) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,442 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-5) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,445 WARN [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0088: HTTP/2 will not be enabled as TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 is not enabled. You may need to install JCE to enable strong ciphers to allow HTTP/2 to function. > 16:41:49,456 INFO [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0006: Undertow HTTPS listener https listening on 127.0.0.1:8443 > 16:41:49,537 INFO [org.jboss.ws.common.management] (MSC service thread 1-8) JBWS022052: Starting JBossWS 5.1.5.Final (Apache CXF 3.1.8) > 16:41:49,539 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-t11-client > 16:41:49,539 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-t11-coordinator > 16:41:49,539 INFO [org.jboss.as.webservices] (MSC service thread 1-3) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-t11-participant > 16:41:49,539 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint-deploy.ws-c11 > 16:41:49,569 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-server]. Adding protocol support for: CORE > 16:41:49,571 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-amqp-protocol]. Adding protocol support for: AMQP > 16:41:49,572 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithCoordinatorCompletionParticipantService > address=http://localhost:8080/ws-t11-participant/BusinessAgreementWithCoordinatorCompletionParticipantService > implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionParticipantPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantService > portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:49,572 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-4) JBWS024061: Adding service endpoint metadata: id=TerminationParticipantService > address=http://localhost:8080/ws-t11-client/TerminationParticipantService > implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationParticipantPortTypeImpl > serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantService > portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:49,572 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-5) JBWS024061: Adding service endpoint metadata: id=ActivationService > address=http://localhost:8080/ws-c11/ActivationService > implementor=com.arjuna.webservices11.wscoor.sei.ActivationPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService > portName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:49,572 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CompletionCoordinatorService > address=http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorService > implementor=com.arjuna.webservices11.wsat.sei.CompletionCoordinatorPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorService > portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:49,572 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-hornetq-protocol]. Adding protocol support for: HORNETQ > 16:41:49,572 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=ParticipantService > address=http://localhost:8080/ws-t11-participant/ParticipantService > implementor=com.arjuna.webservices11.wsat.sei.ParticipantPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService > portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:49,572 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=TerminationCoordinatorService > address=http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorService > implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorPortTypeImpl > serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorService > portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:49,573 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-5) JBWS024061: Adding service endpoint metadata: id=RegistrationService > address=http://localhost:8080/ws-c11/RegistrationService > implementor=com.arjuna.webservices11.wscoor.sei.RegistrationPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService > portName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:49,573 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-3) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithParticipantCompletionParticipantService > address=http://localhost:8080/ws-t11-participant/BusinessAgreementWithParticipantCompletionParticipantService > implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantService > portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:49,573 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-4) JBWS024061: Adding service endpoint metadata: id=CompletionInitiatorService > address=http://localhost:8080/ws-t11-client/CompletionInitiatorService > implementor=com.arjuna.webservices11.wsat.sei.CompletionInitiatorPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorService > portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:49,573 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-stomp-protocol]. Adding protocol support for: STOMP > 16:41:49,573 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=TerminationCoordinatorRPCService > address=http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorRPCService > implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorRPCPortTypeImpl > serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypeImplService > portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypePort > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:49,573 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithCoordinatorCompletionCoordinatorService > address=http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithCoordinatorCompletionCoordinatorService > implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorService > portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:49,574 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithParticipantCompletionCoordinatorService > address=http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithParticipantCompletionCoordinatorService > implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorService > portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:49,574 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CoordinatorService > address=http://localhost:8080/ws-t11-coordinator/CoordinatorService > implementor=com.arjuna.webservices11.wsat.sei.CoordinatorPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService > portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:49,574 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CompletionCoordinatorRPCService > address=http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorRPCService > implementor=com.arjuna.webservices11.wsat.sei.CompletionCoordinatorRPCPortTypeImpl > serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCService > portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCPortType > annotationWsdlLocation=null > wsdlLocationOverride=null > mtomEnabled=false > 16:41:49,629 WARN [org.jboss.as.dependency.private] (MSC service thread 1-7) WFLYSRV0018: Deployment "deployment.restat-web-5.4.1.Final-SNAPSHOT.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice. > 16:41:49,629 WARN [org.jboss.as.dependency.private] (MSC service thread 1-7) WFLYSRV0018: Deployment "deployment.restat-web-5.4.1.Final-SNAPSHOT.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice. > 16:41:49,806 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,807 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:49,815 WARN [org.jboss.as.dependency.private] (MSC service thread 1-8) WFLYSRV0018: Deployment "deployment.xtstest.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice. > 16:41:49,833 INFO [org.jboss.weld.deployer] (MSC service thread 1-8) WFLYWELD0003: Processing weld deployment xtstest.war > 16:41:49,863 INFO [org.hibernate.validator.internal.util.Version] (MSC service thread 1-8) HV000001: Hibernate Validator 5.2.4.Final > 16:41:49,897 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-7) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor-throughput acceptor > 16:41:49,897 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-6) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor-throughput acceptor > 16:41:49,897 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-2) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor acceptor > 16:41:49,898 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-2) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor acceptor > 16:41:49,937 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 65) WFLYUT0021: Registered web context: '/rest-tx' for server 'default-server' > 16:41:49,960 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221007: Server is now live > 16:41:49,960 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221001: Apache ActiveMQ Artemis Message Broker version 1.5.0 [default, nodeID=ef9290cb-ab4d-11e6-b97f-0242ac110007] > 16:41:49,962 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221003: Deploying queue jms.queue.DLQ > 16:41:49,992 INFO [org.wildfly.extension.messaging-activemq] (ServerService Thread Pool -- 67) WFLYMSGAMQ0002: Bound messaging object to jndi name java:/ConnectionFactory > 16:41:49,993 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 70) AMQ221003: Deploying queue jms.queue.ExpiryQueue > 16:41:49,995 INFO [org.wildfly.extension.messaging-activemq] (ServerService Thread Pool -- 65) WFLYMSGAMQ0002: Bound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory > 16:41:50,010 INFO [org.jboss.weld.Version] (MSC service thread 1-8) WELD-000900: 2.4.0 (Final) > 16:41:50,018 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-8) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_One > address=http://localhost:8080/xtstest/xtsservicetest1 > implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl > serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService > portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType > annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl > wsdlLocationOverride=null > mtomEnabled=false > 16:41:50,019 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-8) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_Two > address=http://localhost:8080/xtstest/xtsservicetest2 > implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl > serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService > portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType > annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl > wsdlLocationOverride=null > mtomEnabled=false > 16:41:50,019 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-8) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_Three > address=http://localhost:8080/xtstest/xtsservicetest3 > implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl > serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService > portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType > annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl > wsdlLocationOverride=null > mtomEnabled=false > 16:41:50,019 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-8) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Subordinate_Service_One > address=http://localhost:8080/xtstest/xtssubordinateservicetest1 > implementor=org.jboss.jbossts.xts.servicetests.service.subordinate.XTSSubordinateServiceTestPortTypeImpl > serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService > portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestPortType > annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl > wsdlLocationOverride=null > mtomEnabled=false > 16:41:50,026 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-6) WFLYJCA0007: Registered connection factory java:/JmsXA > 16:41:50,036 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-8) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl > 16:41:50,036 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-5) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService from class com.arjuna.webservices11.wscoor.sei.ActivationPortTypeImpl > 16:41:50,036 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorService from class com.arjuna.webservices11.wsat.sei.CompletionCoordinatorPortTypeImpl > 16:41:50,036 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantService from class com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationParticipantPortType > 16:41:50,036 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantService from class org.oasis_open.docs.ws_tx.wsba._2006._06.BusinessAgreementWithCoordinatorCompletionParticipantPortType > 16:41:50,062 INFO [org.apache.activemq.artemis.ra] (MSC service thread 1-6) Resource adaptor started > 16:41:50,062 INFO [org.jboss.as.connector.services.resourceadapters.ResourceAdapterActivatorService$ResourceAdapterActivator] (MSC service thread 1-6) IJ020002: Deployed: file://RaActivatoractivemq-ra > 16:41:50,063 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-6) WFLYJCA0002: Bound JCA ConnectionFactory [java:/JmsXA] > 16:41:50,063 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-2) WFLYMSGAMQ0002: Bound messaging object to jndi name java:jboss/DefaultJMSConnectionFactory > 16:41:50,339 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-8) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest1 > 16:41:50,386 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be http://localhost:8080/ws-t11-client/TerminationParticipantService > 16:41:50,390 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorService > 16:41:50,390 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/BusinessAgreementWithCoordinatorCompletionParticipantService > 16:41:50,400 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-5) Setting the server's publish address to be http://localhost:8080/ws-c11/ActivationService > 16:41:50,429 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-8) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl > 16:41:50,430 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-8) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl > 16:41:50,432 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-8) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest2 > 16:41:50,436 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-8) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl > 16:41:50,436 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-8) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl > 16:41:50,438 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-8) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest3 > 16:41:50,442 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-8) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl > 16:41:50,442 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-8) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl > 16:41:50,444 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-8) Setting the server's publish address to be http://localhost:8080/xtstest/xtssubordinateservicetest1 > 16:41:50,448 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CompletionCoordinatorService.wsdl > 16:41:50,449 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorService from class com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationCoordinatorPortType > 16:41:50,449 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-8) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl > 16:41:50,450 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-5) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-c11.deployment/ActivationService.wsdl > 16:41:50,450 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-4) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-client.deployment/TerminationParticipantService.wsdl > 16:41:50,450 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-5) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from class com.arjuna.webservices11.wscoor.sei.RegistrationPortTypeImpl > 16:41:50,451 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorService from class com.arjuna.webservices11.wsat.sei.CompletionInitiatorPortTypeImpl > 16:41:50,455 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorService > 16:41:50,459 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/BusinessAgreementWithCoordinatorCompletionParticipantService.wsdl > 16:41:50,460 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be http://localhost:8080/ws-t11-client/CompletionInitiatorService > 16:41:50,460 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from class com.arjuna.webservices11.wsat.sei.ParticipantPortTypeImpl > 16:41:50,462 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/TerminationCoordinatorService.wsdl > 16:41:50,462 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/ParticipantService > 16:41:50,463 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypeImplService from class com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorRPCPortTypeImpl > 16:41:50,463 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_One > 16:41:50,463 INFO [org.jboss.as.webservices] (MSC service thread 1-8) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Subordinate_Service_One > 16:41:50,463 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Three > 16:41:50,464 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0003: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Two > 16:41:50,465 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorRPCService > 16:41:50,465 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-5) Setting the server's publish address to be http://localhost:8080/ws-c11/RegistrationService > 16:41:50,466 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-4) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-client.deployment/CompletionInitiatorService.wsdl > 16:41:50,469 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-2) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:50,470 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-2) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated. > 16:41:50,470 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/ParticipantService.wsdl > 16:41:50,472 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-3) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl > 16:41:50,472 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/TerminationCoordinatorRPCPortTypeImplService.wsdl > 16:41:50,472 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-client.deployment".CompletionInitiatorService > 16:41:50,472 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-client.deployment".TerminationParticipantService > 16:41:50,473 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl > 16:41:50,473 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-t11-client > 16:41:50,478 INFO [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0021: Registered web context: '/ws-t11-client' for server 'default-server' > 16:41:50,482 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-3) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/BusinessAgreementWithParticipantCompletionParticipantService > 16:41:50,483 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-5) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-c11.deployment/RegistrationService.wsdl > 16:41:50,487 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint."ws-c11.deployment".RegistrationService > 16:41:50,487 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint."ws-c11.deployment".ActivationService > 16:41:50,489 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-c11 > 16:41:50,490 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0021: Registered web context: '/ws-c11' for server 'default-server' > 16:41:50,492 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-3) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/BusinessAgreementWithParticipantCompletionParticipantService.wsdl > 16:41:50,495 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithParticipantCompletionParticipantService > 16:41:50,495 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".ParticipantService > 16:41:50,495 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithCoordinatorCompletionParticipantService > 16:41:50,496 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-t11-participant > 16:41:50,497 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0021: Registered web context: '/ws-t11-participant' for server 'default-server' > 16:41:50,502 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithCoordinatorCompletionCoordinatorService > 16:41:50,517 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/BusinessAgreementWithCoordinatorCompletionCoordinatorService.wsdl > 16:41:50,518 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl > 16:41:50,522 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithParticipantCompletionCoordinatorService > 16:41:50,533 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/BusinessAgreementWithParticipantCompletionCoordinatorService.wsdl > 16:41:50,533 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from class com.arjuna.webservices11.wsat.sei.CoordinatorPortTypeImpl > 16:41:50,537 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CoordinatorService > 16:41:50,544 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CoordinatorService.wsdl > 16:41:50,545 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCService from class com.arjuna.webservices11.wsat.sei.CompletionCoordinatorRPCPortTypeImpl > 16:41:50,549 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorRPCService > 16:41:50,555 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/jenkins/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-11.0.0.Alpha1-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CompletionCoordinatorRPCService.wsdl > 16:41:50,560 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorRPCService > 16:41:50,560 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorService > 16:41:50,561 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorRPCService > 16:41:50,561 INFO [org.jboss.as.webservices] (MSC service thread 1-8) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithCoordinatorCompletionCoordinatorService > 16:41:50,561 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithParticipantCompletionCoordinatorService > 16:41:50,561 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CoordinatorService > 16:41:50,561 INFO [org.jboss.as.webservices] (MSC service thread 1-3) WFLYWS0003: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorService > 16:41:50,564 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0003: Starting service jboss.ws.endpoint-publish.ws-t11-coordinator > 16:41:50,565 INFO [org.wildfly.extension.undertow] (MSC service thread 1-4) WFLYUT0021: Registered web context: '/ws-t11-coordinator' for server 'default-server' > 16:41:50,569 INFO [stdout] (MSC service thread 1-4) Rule.execute called for open trace file_2 > 16:41:50,570 INFO [stdout] (MSC service thread 1-4) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:41:50,570 INFO [stdout] (MSC service thread 1-4) calling installed(open trace file) for helper classorg.jboss.byteman.rule.helper.Helper > 16:41:50,570 INFO [stdout] (MSC service thread 1-4) Installed rule using default helper : open trace file > 16:41:50,570 INFO [stdout] (MSC service thread 1-4) open trace file execute > 16:41:50,570 INFO [stdout] (MSC service thread 1-4) Rule.execute called for create participant deletes counter_0 > 16:41:50,571 INFO [stdout] (MSC service thread 1-4) Rule.execute for decommissioned key create participant deletes counter_0 > 16:41:50,582 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace Participant send rollback in class com.arjuna.wst11.messaging.CoordinatorProcessorImpl > 16:41:50,583 INFO [stdout] (MSC service thread 1-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.CoordinatorProcessorImpl.prepared(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace Participant send rollback > 16:41:50,587 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace Participant send rollback in class com.arjuna.wst11.messaging.CoordinatorProcessorImpl > 16:41:50,607 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate coordinator close in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator > 16:41:50,607 INFO [stdout] (MSC service thread 1-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator.rollback() void for rule trace subordinate coordinator close > 16:41:50,608 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate coordinator close in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator > 16:41:50,609 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate coordinator prepare in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator > 16:41:50,609 INFO [stdout] (MSC service thread 1-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator.prepare() int for rule trace subordinate coordinator prepare > 16:41:50,610 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate coordinator prepare in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator > 16:41:50,611 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate coordinator rollback 2 in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator > 16:41:50,612 INFO [stdout] (MSC service thread 1-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator.rollback() void for rule trace subordinate coordinator rollback 2 > 16:41:50,613 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate coordinator rollback 2 in class com.arjuna.mwlabs.wscf.model.twophase.arjunacore.subordinate.SubordinateATCoordinator > 16:41:50,632 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : possible trigger for rule trace delete participant and exit JVM in class org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple > 16:41:50,633 INFO [stdout] (MSC service thread 1-4) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple.deleteParticipantRecoveryRecord(java.lang.String) boolean for rule trace delete participant and exit JVM > 16:41:50,634 INFO [stdout] (MSC service thread 1-4) org.jboss.byteman.agent.Transformer : inserted trigger for trace delete participant and exit JVM in class org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple > 16:41:50,661 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-2) ARJUNA033013: OutboundBridgeRecoveryManager starting > 16:41:50,661 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-4) ARJUNA033006: InboundBridgeRecoveryManager starting > 16:41:50,749 WARN [org.jboss.weld.Bootstrap] (MSC service thread 1-7) WELD-000169: Jandex cannot distinguish inner and static nested classes! Update Jandex to 2.0.3.Final version or newer to improve scanning performance. > 16:41:51,008 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (ServerService Thread Pool -- 73) Starting XTSServiceTestRunner > 16:41:51,008 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (ServerService Thread Pool -- 73) Started XTSServiceTestRunner > 16:41:51,017 INFO [javax.enterprise.resource.webcontainer.jsf.config] (ServerService Thread Pool -- 73) Initializing Mojarra 2.2.13.SP1 20160303-1204 for context '/xtstest' > 16:41:51,377 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 73) WFLYUT0021: Registered web context: '/xtstest' for server 'default-server' > 16:41:51,390 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0010: Deployed "xtstest.war" (runtime-name : "xtstest.war") > 16:41:51,391 INFO [org.jboss.as.server] (ServerService Thread Pool -- 36) WFLYSRV0010: Deployed "restat-web-5.4.1.Final-SNAPSHOT.war" (runtime-name : "restat-web-5.4.1.Final-SNAPSHOT.war") > 16:41:51,449 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:9990/management > 16:41:51,449 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:9990 > 16:41:51,450 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Core 3.0.0.Alpha12 "Kenny" started in 4409ms - Started 671 of 918 services (462 services are lazy, passive or on-demand) > Nov 15, 2016 4:41:51 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController kill > INFO: Hard killing of a server instance > Nov 15, 2016 4:41:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: waiting for byteman to kill the server > Nov 15, 2016 4:41:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:42:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:42:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:42:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:42:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > 16:42:18,935 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace subordinate prepared replay in class org.jboss.jbossts.xts.recovery.coordinator.at.RecoverySubordinateATCoordinator > 16:42:18,937 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.xts.recovery.coordinator.at.RecoverySubordinateATCoordinator.replayPhase2() void for rule trace subordinate prepared replay > 16:42:18,938 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace subordinate prepared replay in class org.jboss.jbossts.xts.recovery.coordinator.at.RecoverySubordinateATCoordinator > 16:42:18,977 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace Coordinator engine create in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:42:18,978 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.(java.lang.String,boolean,javax.xml.ws.wsaddressing.W3CEndpointReference,boolean,com.arjuna.webservices11.wsat.State) void for rule trace Coordinator engine create > 16:42:18,991 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace Coordinator engine create in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:42:18,992 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive Participant aborted in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:42:18,992 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.aborted(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive Participant aborted > 16:42:19,002 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive Participant aborted in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:42:19,004 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive participant prepared in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:42:19,004 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.prepared(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive participant prepared > 16:42:19,015 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive participant prepared in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:42:19,017 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send participant prepare in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:42:19,018 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.prepare() com.arjuna.webservices11.wsat.State for rule trace send participant prepare > 16:42:19,028 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace send participant prepare in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:42:19,029 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send Participant rollback in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:42:19,030 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.CoordinatorEngine.rollback() com.arjuna.webservices11.wsat.State for rule trace send Participant rollback > 16:42:19,040 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace send Participant rollback in class com.arjuna.wst11.messaging.engines.CoordinatorEngine > 16:42:19,042 INFO [stdout] (Periodic Recovery) Rule.execute called for trace Coordinator engine create_12 > 16:42:19,042 INFO [stdout] (Periodic Recovery) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:42:19,042 INFO [stdout] (Periodic Recovery) calling installed(trace Coordinator engine create) for helper classorg.jboss.byteman.rule.helper.Helper > 16:42:19,042 INFO [stdout] (Periodic Recovery) Installed rule using default helper : trace Coordinator engine create > 16:42:19,042 INFO [stdout] (Periodic Recovery) trace Coordinator engine create execute > 16:42:19,043 INFO [stdout] (Periodic Recovery) rule.debug{trace Coordinator engine create} : created recovered Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:20 > 16:42:19,054 INFO [stdout] (Periodic Recovery) Rule.execute called for trace Coordinator engine create_12 > 16:42:19,054 INFO [stdout] (Periodic Recovery) trace Coordinator engine create execute > 16:42:19,054 INFO [stdout] (Periodic Recovery) rule.debug{trace Coordinator engine create} : created recovered Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:23 > 16:42:19,054 INFO [stdout] (Periodic Recovery) Rule.execute called for trace subordinate prepared replay_11 > 16:42:19,057 INFO [stdout] (Periodic Recovery) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:42:19,057 INFO [stdout] (Periodic Recovery) calling installed(trace subordinate prepared replay) for helper classorg.jboss.byteman.rule.helper.Helper > 16:42:19,057 INFO [stdout] (Periodic Recovery) Installed rule using default helper : trace subordinate prepared replay > 16:42:19,057 INFO [stdout] (Periodic Recovery) trace subordinate prepared replay execute > 16:42:19,057 INFO [stdout] (Periodic Recovery) rule.debug{trace subordinate prepared replay} : reinstated prepared subordinate transaction 0:ffffac110007:-3ffa9bb3:582b3abd:19 > 16:42:19,062 INFO [stdout] (Periodic Recovery) xts service test : attempting to deserialize WS-AT participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.2 > 16:42:19,064 INFO [stdout] (Periodic Recovery) xts service test : deserialized WS-AT participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.2 > 16:42:19,065 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace Participant create in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:42:19,066 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.(com.arjuna.wst.Participant,java.lang.String,com.arjuna.webservices11.wsat.State,javax.xml.ws.wsaddressing.W3CEndpointReference,boolean) void for rule trace Participant create > 16:42:19,078 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace Participant create in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:42:19,079 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive participant prepare in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:42:19,079 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.prepare(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive participant prepare > 16:42:19,086 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive participant prepare in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:42:19,087 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send Participant prepared in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:42:19,093 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.sendPrepared(boolean) void for rule trace send Participant prepared > 16:42:19,093 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace send Participant prepared in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:42:19,095 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace receive Participant rollback in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:42:19,096 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.rollback(org.oasis_open.docs.ws_tx.wsat._2006._06.Notification,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void for rule trace receive Participant rollback > 16:42:19,102 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace receive Participant rollback in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:42:19,103 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : possible trigger for rule trace send Participant aborted in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:42:19,109 INFO [stdout] (Periodic Recovery) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into com.arjuna.wst11.messaging.engines.ParticipantEngine.sendAborted() void for rule trace send Participant aborted > 16:42:19,109 INFO [stdout] (Periodic Recovery) org.jboss.byteman.agent.Transformer : inserted trigger for trace send Participant aborted in class com.arjuna.wst11.messaging.engines.ParticipantEngine > 16:42:19,111 INFO [stdout] (Periodic Recovery) Rule.execute called for trace Participant create_17 > 16:42:19,111 INFO [stdout] (Periodic Recovery) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:42:19,111 INFO [stdout] (Periodic Recovery) calling installed(trace Participant create) for helper classorg.jboss.byteman.rule.helper.Helper > 16:42:19,111 INFO [stdout] (Periodic Recovery) Installed rule using default helper : trace Participant create > 16:42:19,111 INFO [stdout] (Periodic Recovery) trace Participant create execute > 16:42:19,111 INFO [stdout] (Periodic Recovery) rule.debug{trace Participant create} : created recovered Participant engine org.jboss.jbossts.xts.servicetests.DurableTestParticipant.2 > 16:42:19,118 INFO [stdout] (Periodic Recovery) Rule.execute called for trace send Participant prepared_19 > 16:42:19,118 INFO [stdout] (Periodic Recovery) Rule.execute for decommissioned key trace send Participant prepared_19 > 16:42:19,227 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Periodic Recovery) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl > 16:42:19,520 INFO [stdout] (Periodic Recovery) xts service test : attempting to deserialize WS-AT participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.1 > 16:42:19,520 INFO [stdout] (Periodic Recovery) xts service test : deserialized WS-AT participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.1 > 16:42:19,520 INFO [stdout] (Periodic Recovery) Rule.execute called for trace Participant create_17 > 16:42:19,520 INFO [stdout] (Periodic Recovery) trace Participant create execute > 16:42:19,520 INFO [stdout] (Periodic Recovery) rule.debug{trace Participant create} : created recovered Participant engine org.jboss.jbossts.xts.servicetests.DurableTestParticipant.1 > 16:42:19,521 INFO [stdout] (Periodic Recovery) Rule.execute called for trace send Participant prepared_19 > 16:42:19,521 INFO [stdout] (Periodic Recovery) Rule.execute for decommissioned key trace send Participant prepared_19 > 16:42:19,530 INFO [stdout] (TaskWorker-1) Rule.execute called for trace receive participant prepared_14 > 16:42:19,530 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:42:19,530 INFO [stdout] (TaskWorker-1) calling installed(trace receive participant prepared) for helper classorg.jboss.byteman.rule.helper.Helper > 16:42:19,531 INFO [stdout] (TaskWorker-1) Installed rule using default helper : trace receive participant prepared > 16:42:19,531 INFO [stdout] (TaskWorker-1) trace receive participant prepared execute > 16:42:19,531 INFO [stdout] (TaskWorker-1) rule.debug{trace receive participant prepared} : prepared received for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:23 > 16:42:19,532 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Periodic Recovery) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl > 16:42:19,550 INFO [stdout] (Periodic Recovery) xts service test : attempting to deserialize WS-AT participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.0 > 16:42:19,550 INFO [stdout] (Periodic Recovery) xts service test : deserialized WS-AT participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.0 > 16:42:19,551 INFO [stdout] (TaskWorker-1) Rule.execute called for trace receive participant prepared_14 > 16:42:19,551 INFO [stdout] (Periodic Recovery) Rule.execute called for trace Participant create_17 > 16:42:19,551 INFO [stdout] (TaskWorker-1) trace receive participant prepared execute > 16:42:19,551 INFO [stdout] (Periodic Recovery) trace Participant create execute > 16:42:19,551 INFO [stdout] (TaskWorker-1) rule.debug{trace receive participant prepared} : prepared received for Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:20 > 16:42:19,551 INFO [stdout] (Periodic Recovery) rule.debug{trace Participant create} : created recovered Participant engine org.jboss.jbossts.xts.servicetests.DurableTestParticipant.0 > 16:42:19,551 INFO [stdout] (Periodic Recovery) Rule.execute called for trace send Participant prepared_19 > 16:42:19,551 INFO [stdout] (Periodic Recovery) Rule.execute for decommissioned key trace send Participant prepared_19 > 16:42:19,560 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Periodic Recovery) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl > 16:42:19,576 WARN [com.arjuna.wsrecovery] (Periodic Recovery) ARJUNA046033: Compensating orphaned subordinate WS-AT transcation 0:ffffac110007:-3ffa9bb3:582b3abd:19 > 16:42:19,576 INFO [stdout] (Periodic Recovery) Rule.execute called for trace subordinate coordinator close_7 > 16:42:19,576 INFO [stdout] (Periodic Recovery) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:42:19,577 INFO [stdout] (Periodic Recovery) calling installed(trace subordinate coordinator close) for helper classorg.jboss.byteman.rule.helper.Helper > 16:42:19,577 INFO [stdout] (Periodic Recovery) Installed rule using default helper : trace subordinate coordinator close > 16:42:19,577 INFO [stdout] (Periodic Recovery) trace subordinate coordinator close execute > 16:42:19,577 INFO [stdout] (Periodic Recovery) rule.debug{trace subordinate coordinator close} : rollback called for subordinate coordinator BasicAction: 0:ffffac110007:-3ffa9bb3:582b3abd:19 status: ActionStatus.COMMITTING > 16:42:19,577 INFO [stdout] (Periodic Recovery) Rule.execute called for trace send Participant rollback_16 > 16:42:19,577 INFO [stdout] (Periodic Recovery) Rule.execute for decommissioned key trace send Participant rollback_16 > 16:42:19,583 WARN [com.arjuna.wst] (TaskWorker-1) ARJUNA043134: Prepared called on unknown coordinator: D0:ffffac110007:-3ffa9bb3:582b3abd:16 > 16:42:19,583 INFO [stdout] (TaskWorker-1) Rule.execute called for trace Participant send rollback_6 > 16:42:19,583 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:42:19,583 INFO [stdout] (TaskWorker-1) calling installed(trace Participant send rollback) for helper classorg.jboss.byteman.rule.helper.Helper > 16:42:19,583 INFO [stdout] (TaskWorker-1) Installed rule using default helper : trace Participant send rollback > 16:42:19,584 INFO [stdout] (TaskWorker-1) trace Participant send rollback execute > 16:42:19,584 INFO [stdout] (TaskWorker-1) rule.debug{trace Participant send rollback} : sent rollback for unknown Coordinator engine D0:ffffac110007:-3ffa9bb3:582b3abd:16 > 16:42:19,588 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl > 16:42:19,599 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Periodic Recovery) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl > 16:42:19,600 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl > 16:42:19,638 INFO [stdout] (TaskWorker-1) Rule.execute called for trace receive Participant rollback_20 > 16:42:19,638 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:42:19,638 INFO [stdout] (TaskWorker-1) calling installed(trace receive Participant rollback) for helper classorg.jboss.byteman.rule.helper.Helper > 16:42:19,638 INFO [stdout] (TaskWorker-1) Installed rule using default helper : trace receive Participant rollback > 16:42:19,638 INFO [stdout] (TaskWorker-1) trace receive Participant rollback execute > 16:42:19,639 INFO [stdout] (TaskWorker-1) rule.debug{trace receive Participant rollback} : rollback received for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.0 > 16:42:19,639 INFO [stdout] (TaskWorker-1) Rule.execute called for trace delete participant and exit JVM_10 > 16:42:19,639 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:42:19,639 INFO [stdout] (TaskWorker-1) calling installed(trace delete participant and exit JVM) for helper classorg.jboss.byteman.rule.helper.Helper > 16:42:19,639 INFO [stdout] (TaskWorker-1) Installed rule using default helper : trace delete participant and exit JVM > 16:42:19,639 INFO [stdout] (TaskWorker-1) trace delete participant and exit JVM execute > 16:42:19,640 INFO [stdout] (TaskWorker-1) Rule.execute called for trace send Participant aborted_21 > 16:42:19,640 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:42:19,640 INFO [stdout] (TaskWorker-1) calling installed(trace send Participant aborted) for helper classorg.jboss.byteman.rule.helper.Helper > 16:42:19,640 INFO [stdout] (TaskWorker-1) Installed rule using default helper : trace send Participant aborted > 16:42:19,640 INFO [stdout] (TaskWorker-1) trace send Participant aborted execute > 16:42:19,640 INFO [stdout] (TaskWorker-1) rule.debug{trace send Participant aborted} : aborted sent for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.0 > 16:42:19,650 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl > 16:42:19,667 INFO [stdout] (TaskWorker-1) Rule.execute called for trace receive Participant rollback_20 > 16:42:19,668 INFO [stdout] (TaskWorker-1) trace receive Participant rollback execute > 16:42:19,668 INFO [stdout] (TaskWorker-1) rule.debug{trace receive Participant rollback} : rollback received for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.1 > 16:42:19,669 INFO [stdout] (TaskWorker-1) Rule.execute called for trace delete participant and exit JVM_10 > 16:42:19,669 INFO [stdout] (TaskWorker-1) trace delete participant and exit JVM execute > 16:42:19,669 INFO [stdout] (TaskWorker-1) Rule.execute called for trace send Participant aborted_21 > 16:42:19,670 INFO [stdout] (TaskWorker-1) trace send Participant aborted execute > 16:42:19,669 WARN [com.arjuna.wst] (TaskWorker-2) ARJUNA043130: Aborted called on unknown coordinator: D0:ffffac110007:-3ffa9bb3:582b3abd:16 > 16:42:19,670 INFO [stdout] (TaskWorker-1) rule.debug{trace send Participant aborted} : aborted sent for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.1 > 16:42:19,678 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl > 16:42:19,694 INFO [stdout] (TaskWorker-2) Rule.execute called for trace receive Participant aborted_13 > 16:42:19,694 INFO [stdout] (TaskWorker-2) Rule.execute for decommissioned key trace receive Participant aborted_13 > 16:42:19,694 INFO [stdout] (Periodic Recovery) Rule.execute called for trace send Participant rollback_16 > 16:42:19,694 INFO [stdout] (Periodic Recovery) Rule.execute for decommissioned key trace send Participant rollback_16 > 16:42:19,710 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (Periodic Recovery) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl > 16:42:19,728 INFO [stdout] (TaskWorker-1) Rule.execute called for trace receive Participant rollback_20 > 16:42:19,728 INFO [stdout] (TaskWorker-1) trace receive Participant rollback execute > 16:42:19,729 INFO [stdout] (TaskWorker-1) rule.debug{trace receive Participant rollback} : rollback received for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.2 > 16:42:19,729 INFO [stdout] (TaskWorker-1) Rule.execute called for trace delete participant and exit JVM_10 > 16:42:19,729 INFO [stdout] (TaskWorker-1) trace delete participant and exit JVM execute > 16:42:19,729 INFO [stdout] (TaskWorker-1) Rule.execute called for trace send Participant aborted_21 > 16:42:19,729 INFO [stdout] (TaskWorker-1) trace send Participant aborted execute > 16:42:19,730 INFO [stdout] (TaskWorker-1) rule.debug{trace send Participant aborted} : aborted sent for Participant org.jboss.jbossts.xts.servicetests.DurableTestParticipant.2 > 16:42:19,738 INFO [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/jenkins/.m2/repository/org/jboss/narayana/xts/jbossxts/5.4.1.Final-SNAPSHOT/jbossxts-5.4.1.Final-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl > 16:42:19,752 INFO [stdout] (TaskWorker-2) Rule.execute called for trace receive Participant aborted_13 > 16:42:19,752 INFO [stdout] (TaskWorker-2) Rule.execute for decommissioned key trace receive Participant aborted_13 > 16:42:19,753 INFO [stdout] (Periodic Recovery) Rule.execute called for trace remove committed state_5 > 16:42:19,753 INFO [stdout] (Periodic Recovery) Rule.execute for decommissioned key trace remove committed state_5 > 16:42:19,753 INFO [stdout] (Periodic Recovery) Rule.execute called for trace remove committed state and exit JVM_4 > 16:42:19,753 INFO [stdout] (Periodic Recovery) Rule.execute for decommissioned key trace remove committed state and exit JVM_4 > 16:42:19,753 INFO [stdout] (Periodic Recovery) Rule.execute called for trace subordinate coordinator rollback 2_9 > 16:42:19,754 INFO [stdout] (Periodic Recovery) HelperManager.install for helper class org.jboss.byteman.rule.helper.Helper > 16:42:19,754 INFO [stdout] (Periodic Recovery) calling installed(trace subordinate coordinator rollback 2) for helper classorg.jboss.byteman.rule.helper.Helper > 16:42:19,754 INFO [stdout] (Periodic Recovery) Installed rule using default helper : trace subordinate coordinator rollback 2 > 16:42:19,754 INFO [stdout] (Periodic Recovery) trace subordinate coordinator rollback 2 execute > 16:42:19,754 INFO [stdout] (Periodic Recovery) rule.debug{trace subordinate coordinator rollback 2} : rollback returned for subordinate coordinator BasicAction: 0:ffffac110007:-3ffa9bb3:582b3abd:19 status: ActionStatus.ABORTED > Nov 15, 2016 4:42:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:42:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:42:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:42:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:42:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:42:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:42:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:42:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:43:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:43:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:43:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:43:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:43:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:43:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:43:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:43:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:43:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:43:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:43:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:43:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:44:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:44:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:44:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:44:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:44:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:44:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:44:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:44:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:44:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:44:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:44:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:44:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:45:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:45:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:45:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:45:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:45:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:45:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:45:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:45:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:45:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:45:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:45:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:45:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:46:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:46:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:46:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:46:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:46:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:46:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:46:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:46:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:46:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:46:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:46:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:46:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:47:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:47:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:47:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:47:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:47:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:47:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:47:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:47:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:47:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:47:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:47:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:47:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:48:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:48:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:48:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:48:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:48:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:48:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:48:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:48:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:48:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:48:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:48:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:48:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:49:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:49:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:49:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:49:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:49:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:49:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:49:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:49:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:49:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:49:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:49:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:49:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:50:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:50:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:50:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:50:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:50:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:50:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:50:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:50:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:50:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:50:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:50:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:50:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:51:01 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:51:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:51:11 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:51:11 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:51:21 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:51:21 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:51:31 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:51:31 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:51:41 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:51:41 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:51:51 PM com.arjuna.qa.extension.BaseServerKillProcessor kill > INFO: jboss-as is still alive, sleeping for a further 10000ms > Nov 15, 2016 4:51:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommand > INFO: Executing shell command: 'ps aux | grep jboss-module[s] | awk '{print $2}' | xargs kill' > Nov 15, 2016 4:51:51 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > 16:51:51,969 INFO [org.jboss.as.server] (Thread-3) WFLYSRV0220: Server shutdown has been requested via an OS signal > 16:51:51,982 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-6) ARJUNA033007: InboundBridgeRecoveryManager stopping > 16:51:51,982 INFO [org.wildfly.extension.messaging-activemq] (MSC service thread 1-8) WFLYMSGAMQ0006: Unbound messaging object to jndi name java:jboss/DefaultJMSConnectionFactory > 16:51:51,982 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-7) ARJUNA033014: OutboundBridgeRecoveryManager stopping > 16:51:51,984 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-1) WFLYJCA0011: Unbound JCA ConnectionFactory [java:/JmsXA] > 16:51:51,984 INFO [org.wildfly.extension.messaging-activemq] (ServerService Thread Pool -- 77) WFLYMSGAMQ0006: Unbound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory > 16:51:51,990 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 78) WFLYUT0022: Unregistered web context: '/rest-tx' from server 'default-server' > 16:51:51,990 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 80) WFLYUT0022: Unregistered web context: '/xtstest' from server 'default-server' > 16:51:51,996 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (ServerService Thread Pool -- 80) Stopping XTSServiceTestRunner > 16:51:51,996 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (ServerService Thread Pool -- 80) Stopped XTSServiceTestRunner > 16:51:51,997 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0004: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Subordinate_Service_One > 16:51:51,997 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0004: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Two > 16:51:51,998 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0004: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Three > 16:51:51,998 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0004: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_One > 16:51:52,012 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-1) WFLYJCA0010: Unbound data source [java:jboss/datasources/ExampleDS] > 16:51:52,013 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-6) WFLYJCA0019: Stopped Driver service with driver-name = h2 > 16:51:52,017 INFO [org.apache.activemq.artemis.ra] (ServerService Thread Pool -- 78) AMQ151003: resource adaptor stopped > 16:51:52,026 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) WFLYSRV0028: Stopped deployment restat-web-5.4.1.Final-SNAPSHOT.war (runtime-name: restat-web-5.4.1.Final-SNAPSHOT.war) in 50ms > 16:51:52,031 INFO [org.jboss.as.server.deployment] (MSC service thread 1-6) WFLYSRV0028: Stopped deployment xtstest.war (runtime-name: xtstest.war) in 56ms > 16:51:52,053 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 78) AMQ221002: Apache ActiveMQ Artemis Message Broker version 1.5.0 [ef9290cb-ab4d-11e6-b97f-0242ac110007] stopped, uptime 10 minutes > Nov 15, 2016 4:51:56 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > 16:51:59,834 WARN [org.apache.activemq.artemis.service.extensions.xa.recovery] (Periodic Recovery) AMQ122015: Can not connect to XARecoveryConfig [transportConfiguration=[TransportConfiguration(name=, factory=org-apache-activemq-artemis-core-remoting-impl-invm-InVMConnectorFactory) ?serverId=0], discoveryConfiguration=null, username=null, password=****, JNDI_NAME=java:/JmsXA] on auto-generated resource recovery: ActiveMQNotConnectedException[errorType=NOT_CONNECTED message=AMQ119007: Cannot connect to server(s). Tried with all available servers.] > at org.apache.activemq.artemis.core.client.impl.ServerLocatorImpl.createSessionFactory(ServerLocatorImpl.java:785) > at org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXAResourceWrapper.connect(ActiveMQXAResourceWrapper.java:311) > at org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXAResourceWrapper.getDelegate(ActiveMQXAResourceWrapper.java:239) > at org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXAResourceWrapper.recover(ActiveMQXAResourceWrapper.java:69) > at org.apache.activemq.artemis.service.extensions.xa.ActiveMQXAResourceWrapperImpl.recover(ActiveMQXAResourceWrapperImpl.java:106) > at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.xaRecoverySecondPass(XARecoveryModule.java:770) > at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.bottomUpRecovery(XARecoveryModule.java:461) > at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.periodicWorkSecondPass(XARecoveryModule.java:218) > at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.doWorkInternal(PeriodicRecovery.java:811) > at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.run(PeriodicRecovery.java:377) > 16:51:59,834 WARN [org.apache.activemq.artemis.service.extensions.xa.recovery] (Periodic Recovery) AMQ122008: XA Recovery can not connect to any broker on recovery [XARecoveryConfig [transportConfiguration=[TransportConfiguration(name=, factory=org-apache-activemq-artemis-core-remoting-impl-invm-InVMConnectorFactory) ?serverId=0], discoveryConfiguration=null, username=null, password=****, JNDI_NAME=java:/JmsXA]] > 16:51:59,835 WARN [com.arjuna.ats.jta] (Periodic Recovery) ARJUNA016027: Local XARecoveryModule.xaRecovery got XA exception XAException.XAER_RMFAIL: javax.transaction.xa.XAException: Error trying to connect to any providers for xa recovery > at org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXAResourceWrapper.getDelegate(ActiveMQXAResourceWrapper.java:258) > at org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXAResourceWrapper.recover(ActiveMQXAResourceWrapper.java:69) > at org.apache.activemq.artemis.service.extensions.xa.ActiveMQXAResourceWrapperImpl.recover(ActiveMQXAResourceWrapperImpl.java:106) > at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.xaRecoverySecondPass(XARecoveryModule.java:770) > at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.bottomUpRecovery(XARecoveryModule.java:461) > at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.periodicWorkSecondPass(XARecoveryModule.java:218) > at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.doWorkInternal(PeriodicRecovery.java:811) > at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.run(PeriodicRecovery.java:377) > Caused by: ActiveMQNotConnectedException[errorType=NOT_CONNECTED message=null] > at org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXAResourceWrapper.connect(ActiveMQXAResourceWrapper.java:345) > at org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXAResourceWrapper.getDelegate(ActiveMQXAResourceWrapper.java:239) > ... 7 more > 16:51:59,836 INFO [org.jboss.as.webservices] (MSC service thread 1-5) WFLYWS0004: Stopping service jboss.ws.endpoint-publish.ws-t11-coordinator > 16:51:59,836 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0004: Stopping service jboss.ws.endpoint-publish.ws-c11 > 16:51:59,836 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0004: Stopping service jboss.ws.endpoint-publish.ws-t11-client > 16:51:59,836 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0004: Stopping service jboss.ws.endpoint-publish.ws-t11-participant > 16:51:59,837 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0022: Unregistered web context: '/ws-t11-coordinator' from server 'default-server' > 16:51:59,837 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0022: Unregistered web context: '/ws-c11' from server 'default-server' > 16:51:59,837 INFO [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0022: Unregistered web context: '/ws-t11-participant' from server 'default-server' > 16:51:59,837 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0022: Unregistered web context: '/ws-t11-client' from server 'default-server' > 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorRPCService > 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CoordinatorService > 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithParticipantCompletionCoordinatorService > 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-c11.deployment".ActivationService > 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorRPCService > 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-c11.deployment".RegistrationService > 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorService > 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorService > 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithCoordinatorCompletionCoordinatorService > 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-7) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".ParticipantService > 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-2) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithCoordinatorCompletionParticipantService > 16:51:59,838 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-client.deployment".TerminationParticipantService > 16:51:59,837 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithParticipantCompletionParticipantService > 16:51:59,838 INFO [org.jboss.as.webservices] (MSC service thread 1-8) WFLYWS0004: Stopping service jboss.ws.endpoint."ws-t11-client.deployment".CompletionInitiatorService > 16:51:59,838 INFO [org.jboss.as.webservices] (MSC service thread 1-3) WFLYWS0004: Stopping service jboss.ws.endpoint-deploy.ws-c11 > 16:51:59,838 INFO [org.jboss.as.webservices] (MSC service thread 1-4) WFLYWS0004: Stopping service jboss.ws.endpoint-deploy.ws-t11-coordinator > 16:51:59,838 INFO [org.jboss.as.webservices] (MSC service thread 1-6) WFLYWS0004: Stopping service jboss.ws.endpoint-deploy.ws-t11-client > 16:51:59,838 INFO [org.jboss.as.webservices] (MSC service thread 1-1) WFLYWS0004: Stopping service jboss.ws.endpoint-deploy.ws-t11-participant > 16:51:59,838 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0019: Host default-host stopping > 16:51:59,841 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0008: Undertow HTTP listener default suspending > 16:51:59,841 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0008: Undertow HTTPS listener https suspending > 16:51:59,841 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0007: Undertow HTTP listener default stopped, was bound to 127.0.0.1:8080 > 16:51:59,841 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0007: Undertow HTTPS listener https stopped, was bound to 127.0.0.1:8443 > 16:51:59,842 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0004: Undertow 1.4.4.Final stopping > 16:51:59,849 INFO [org.jboss.as] (MSC service thread 1-6) WFLYSRV0050: WildFly Core 3.0.0.Alpha12 "Kenny" stopped in 7870ms > Nov 15, 2016 4:52:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor runShellCommandExitCode > INFO: Executing shell command: 'if [ "x`ps aux | grep 'jboss-module[s]'`" = "x" ]; then exit 1; fi' > Nov 15, 2016 4:52:01 PM com.arjuna.qa.extension.JBossAS7ServerKillProcessor shutdownJBoss > INFO: jboss-as shutdown after sending shutdown command > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 22 04:35:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Tue, 22 Nov 2016 04:35:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2782) XTS crash recovery test Byteman rules use wrong variable types In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2782?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gytis Trikleris updated JBTM-2782: ---------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > XTS crash recovery test Byteman rules use wrong variable types > -------------------------------------------------------------- > > Key: JBTM-2782 > URL: https://issues.jboss.org/browse/JBTM-2782 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: XTS > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > > After updating Byteman as part of the compensations recovery work, XTS tests started to fail Byteman type check: > {code} > [INFO] --- byteman-rulecheck-maven-plugin:3.0.6:rulecheck (rulecheck) @ localjunit-crash-recovery-tests --- > [INFO] Checking 11 byteman scripts in /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes > [ERROR] Checking byteman script rules failed with 23 errors > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATCrashDuringCommit.btm line 322 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATHeuristicRecoveryAfterDelayedCommit.btm line 326 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace heuristic committed replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATHeuristicRecoveryAfterDelayedCommit.btm line 346 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringCommit.btm line 543 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringCommit.btm line 564 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm line 614 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/ATSubordinateCrashDuringPrepare.btm line 634 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace coordinator completion complete" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 490 against method complete() com.arjuna.webservices11.wsba.State > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 491 > [ERROR] ERROR : Failed to type check rule "trace participant completion completed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 507 against method completed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 508 > [ERROR] ERROR : Failed to type check rule "trace coordinator completion completed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 524 against method completed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 525 > [ERROR] ERROR : Failed to type check rule "trace participant completion exit" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 541 against method exit(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 542 > [ERROR] ERROR : Failed to type check rule "trace coordinator completion exit" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 558 against method exit(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 559 > [ERROR] ERROR : Failed to type check rule "trace participant completion close" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 615 against method close() com.arjuna.webservices11.wsba.State > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 616 > [ERROR] ERROR : Failed to type check rule "trace coordinator completion close" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 633 against method close() com.arjuna.webservices11.wsba.State > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 634 > [ERROR] ERROR : Failed to type check rule "trace participant completion closed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 650 against method closed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 651 > [ERROR] ERROR : Failed to type check rule "trace coordinator completion closed" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 667 against method closed(org.oasis_open.docs.ws_tx.wsba._2006._06.NotificationType,org.jboss.ws.api.addressing.MAP,com.arjuna.webservices11.wsarj.ArjunaContext) void > org.jboss.byteman.rule.exception.TypeException: Variable.typeCheck : unable to derive type for variable engine file /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 668 > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BACrashDuringCommit.btm line 685 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommit.btm line 911 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommit.btm line 931 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommitAfterSubordinateExit.btm line 944 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringCommitAfterSubordinateExit.btm line 963 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringComplete.btm line 1017 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > [ERROR] ERROR : Failed to type check rule "trace subordinate prepared replay" loaded from /home/jenkins/workspace/btny-pulls-narayana-jdk8/PROFILE/MAIN/jdk/jdk8.latest/label/linux/XTS/localjunit/crash-recovery-tests/target/test-classes/scripts/BASubordinateCrashDuringComplete.btm line 1037 against method replayPhase2() void > org.jboss.byteman.rule.exception.TypeException: Binding.typecheck unknown type for binding uid > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 22 04:56:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Tue, 22 Nov 2016 04:56:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2794) Javadoc compensations framework In-Reply-To: References: Message-ID: Gytis Trikleris created JBTM-2794: ------------------------------------- Summary: Javadoc compensations framework Key: JBTM-2794 URL: https://issues.jboss.org/browse/JBTM-2794 Project: JBoss Transaction Manager Issue Type: Task Components: Compensations Reporter: Gytis Trikleris Assignee: Gytis Trikleris Fix For: 5.next Compensations framework internal classes do not have javadocs. They should be documented to make maintenance easier in the future. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 22 04:56:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Tue, 22 Nov 2016 04:56:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2794) Javadoc compensations framework In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2794?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Work on JBTM-2794 started by Gytis Trikleris. --------------------------------------------- > Javadoc compensations framework > ------------------------------- > > Key: JBTM-2794 > URL: https://issues.jboss.org/browse/JBTM-2794 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Compensations > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Fix For: 5.next > > > Compensations framework internal classes do not have javadocs. They should be documented to make maintenance easier in the future. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Thu Nov 24 04:43:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Thu, 24 Nov 2016 04:43:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2794) Javadoc compensations framework In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2794?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Issue was automatically transitioned when Gytis Trikleris created pull request #1091 in GitHub ---------------------------------------------------------------------------------------------- Status: Pull Request Sent (was: Coding In Progress) > Javadoc compensations framework > ------------------------------- > > Key: JBTM-2794 > URL: https://issues.jboss.org/browse/JBTM-2794 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Compensations > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Fix For: 5.next > > > Compensations framework internal classes do not have javadocs. They should be documented to make maintenance easier in the future. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Sun Nov 27 22:27:00 2016 From: issues at jboss.org (Amos Feng (JIRA)) Date: Sun, 27 Nov 2016 22:27:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2795) Quickstart can not build the karaf In-Reply-To: References: Message-ID: Amos Feng created JBTM-2795: ------------------------------- Summary: Quickstart can not build the karaf Key: JBTM-2795 URL: https://issues.jboss.org/browse/JBTM-2795 Project: JBoss Transaction Manager Issue Type: Bug Components: Build System, Demonstrator Reporter: Amos Feng Assignee: Amos Feng Fix For: 5.next {code} [ERROR] Failed to execute goal org.apache.karaf.tooling:karaf-maven-plugin:4.1.0-SNAPSHOT:kar (package) on project framework: Execution package of goal org.apache.karaf.tooling:karaf-maven-plugin:4.1.0-SNAPSHOT:kar failed: An API incompatibility was encountered while executing org.apache.karaf.tooling:karaf-maven-plugin:4.1.0-SNAPSHOT:kar: java.lang.NoSuchMethodError: org.apache.maven.wagon.providers.http.AbstractHttpClientWagon.getReadTimeout()I {code} It looks like we need to upgrade the maven and to use the build.bat -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Sun Nov 27 22:35:00 2016 From: issues at jboss.org (Amos Feng (JIRA)) Date: Sun, 27 Nov 2016 22:35:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2795) Quickstart can not build the karaf In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Issue was automatically transitioned when Amos Feng created pull request #181 in GitHub --------------------------------------------------------------------------------------- Status: Pull Request Sent (was: Open) > Quickstart can not build the karaf > ---------------------------------- > > Key: JBTM-2795 > URL: https://issues.jboss.org/browse/JBTM-2795 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: Build System, Demonstrator > Reporter: Amos Feng > Assignee: Amos Feng > Fix For: 5.next > > > {code} > [ERROR] Failed to execute goal org.apache.karaf.tooling:karaf-maven-plugin:4.1.0-SNAPSHOT:kar (package) on project framework: Execution package of goal org.apache.karaf.tooling:karaf-maven-plugin:4.1.0-SNAPSHOT:kar failed: An API incompatibility was encountered while executing org.apache.karaf.tooling:karaf-maven-plugin:4.1.0-SNAPSHOT:kar: java.lang.NoSuchMethodError: org.apache.maven.wagon.providers.http.AbstractHttpClientWagon.getReadTimeout()I > {code} > It looks like we need to upgrade the maven and to use the build.bat -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 28 01:26:00 2016 From: issues at jboss.org (Amos Feng (JIRA)) Date: Mon, 28 Nov 2016 01:26:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2776) Investigate the arquillian tests failure with the JDK 9 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2776?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13328543#comment-13328543 ] Amos Feng commented on JBTM-2776: --------------------------------- It should set the property of server.jvm.args in the j9 profile > Investigate the arquillian tests failure with the JDK 9 > ------------------------------------------------------- > > Key: JBTM-2776 > URL: https://issues.jboss.org/browse/JBTM-2776 > Project: JBoss Transaction Manager > Issue Type: Sub-task > Components: Build System > Reporter: Amos Feng > Assignee: Amos Feng > Labels: jdk9 > > the arquillian can not create the container -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 28 01:26:00 2016 From: issues at jboss.org (Amos Feng (JIRA)) Date: Mon, 28 Nov 2016 01:26:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2776) Investigate the arquillian tests failure with the JDK 9 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2776?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Amos Feng resolved JBTM-2776. ----------------------------- Resolution: Done > Investigate the arquillian tests failure with the JDK 9 > ------------------------------------------------------- > > Key: JBTM-2776 > URL: https://issues.jboss.org/browse/JBTM-2776 > Project: JBoss Transaction Manager > Issue Type: Sub-task > Components: Build System > Reporter: Amos Feng > Assignee: Amos Feng > Labels: jdk9 > > the arquillian can not create the container -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 28 01:28:00 2016 From: issues at jboss.org (Amos Feng (JIRA)) Date: Mon, 28 Nov 2016 01:28:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2796) Investigate the Tomcat integration tests failure with the JDK 9 In-Reply-To: References: Message-ID: Amos Feng created JBTM-2796: ------------------------------- Summary: Investigate the Tomcat integration tests failure with the JDK 9 Key: JBTM-2796 URL: https://issues.jboss.org/browse/JBTM-2796 Project: JBoss Transaction Manager Issue Type: Sub-task Components: Application Server Integration, Build System Reporter: Amos Feng Assignee: Amos Feng Endorsed standards and standalone APIs in modular form will be supported via the concept of upgradeable modules -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 28 01:29:00 2016 From: issues at jboss.org (Amos Feng (JIRA)) Date: Mon, 28 Nov 2016 01:29:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2797) Check the Blacktie build with JDK 9 In-Reply-To: References: Message-ID: Amos Feng created JBTM-2797: ------------------------------- Summary: Check the Blacktie build with JDK 9 Key: JBTM-2797 URL: https://issues.jboss.org/browse/JBTM-2797 Project: JBoss Transaction Manager Issue Type: Sub-task Components: BlackTie, Build System Reporter: Amos Feng Assignee: Amos Feng -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 28 04:52:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Mon, 28 Nov 2016 04:52:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2795) Quickstart can not build the karaf In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2795: -------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > Quickstart can not build the karaf > ---------------------------------- > > Key: JBTM-2795 > URL: https://issues.jboss.org/browse/JBTM-2795 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: Build System, Demonstrator > Reporter: Amos Feng > Assignee: Amos Feng > Fix For: 5.next > > > {code} > [ERROR] Failed to execute goal org.apache.karaf.tooling:karaf-maven-plugin:4.1.0-SNAPSHOT:kar (package) on project framework: Execution package of goal org.apache.karaf.tooling:karaf-maven-plugin:4.1.0-SNAPSHOT:kar failed: An API incompatibility was encountered while executing org.apache.karaf.tooling:karaf-maven-plugin:4.1.0-SNAPSHOT:kar: java.lang.NoSuchMethodError: org.apache.maven.wagon.providers.http.AbstractHttpClientWagon.getReadTimeout()I > {code} > It looks like we need to upgrade the maven and to use the build.bat -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 28 12:04:00 2016 From: issues at jboss.org (Mirko Streckenbach (JIRA)) Date: Mon, 28 Nov 2016 12:04:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2798) Connection.isClosed throws NullPointerException or returns false after close In-Reply-To: References: Message-ID: Mirko Streckenbach created JBTM-2798: ---------------------------------------- Summary: Connection.isClosed throws NullPointerException or returns false after close Key: JBTM-2798 URL: https://issues.jboss.org/browse/JBTM-2798 Project: JBoss Transaction Manager Issue Type: Bug Affects Versions: 5.4.0.Final Reporter: Mirko Streckenbach The following snippet fails with a NullPointerException: {code} Connection c = ConnectionManager.create(dbUrl, properties); System.err.println("closed1=" + c.isClosed()); c.close(); System.err.println("closed2=" + c.isClosed()); {code} output: {code} closed1=false java.lang.NullPointerException at com.arjuna.ats.internal.jdbc.ConnectionImple.closeImpl(ConnectionImple.java:389) at com.arjuna.ats.internal.jdbc.ConnectionImple.close(ConnectionImple.java:381) at org.jboss.narayana.quickstarts.jta.Main.main(Main.java:140) {code} If it is modified to "use" the init the physical connect before closing, it will not throw an exception, but returns false for isClosed after the close: {code} Connection c = ConnectionManager.create(dbUrl, properties); System.err.println("closed1=" + c.isClosed()); c.createStatement().close(); System.err.println("closed2=" + c.isClosed()); c.close(); System.err.println("closed3=" + c.isClosed()); {code} output: {code} closed1=false closed2=false closed3=false {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 28 12:11:00 2016 From: issues at jboss.org (Anonymous (JIRA)) Date: Mon, 28 Nov 2016 12:11:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2798) Connection.isClosed throws NullPointerException or returns false after close In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2798?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Issue was automatically transitioned when Mirko Streckenbach created pull request #1092 in GitHub ------------------------------------------------------------------------------------------------- Status: Pull Request Sent (was: Open) > Connection.isClosed throws NullPointerException or returns false after close > ---------------------------------------------------------------------------- > > Key: JBTM-2798 > URL: https://issues.jboss.org/browse/JBTM-2798 > Project: JBoss Transaction Manager > Issue Type: Bug > Affects Versions: 5.4.0.Final > Reporter: Mirko Streckenbach > > The following snippet fails with a NullPointerException: > {code} > Connection c = ConnectionManager.create(dbUrl, properties); > System.err.println("closed1=" + c.isClosed()); > c.close(); > System.err.println("closed2=" + c.isClosed()); > {code} > output: > {code} > closed1=false > java.lang.NullPointerException > at com.arjuna.ats.internal.jdbc.ConnectionImple.closeImpl(ConnectionImple.java:389) > at com.arjuna.ats.internal.jdbc.ConnectionImple.close(ConnectionImple.java:381) > at org.jboss.narayana.quickstarts.jta.Main.main(Main.java:140) > {code} > If it is modified to "use" the init the physical connect before closing, it will not throw an > exception, but returns false for isClosed after the close: > {code} > Connection c = ConnectionManager.create(dbUrl, properties); > System.err.println("closed1=" + c.isClosed()); > c.createStatement().close(); > System.err.println("closed2=" + c.isClosed()); > c.close(); > System.err.println("closed3=" + c.isClosed()); > {code} > output: > {code} > closed1=false > closed2=false > closed3=false > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Mon Nov 28 12:12:00 2016 From: issues at jboss.org (Mirko Streckenbach (JIRA)) Date: Mon, 28 Nov 2016 12:12:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2798) Connection.isClosed throws NullPointerException or returns false after close In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2798?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13330421#comment-13330421 ] Mirko Streckenbach commented on JBTM-2798: ------------------------------------------ I created a pull request with two additional testcases: https://github.com/jbosstm/narayana/pull/1092. Warning: this contains only the testcases, no fixes. I'm willing to provide the fixes. > Connection.isClosed throws NullPointerException or returns false after close > ---------------------------------------------------------------------------- > > Key: JBTM-2798 > URL: https://issues.jboss.org/browse/JBTM-2798 > Project: JBoss Transaction Manager > Issue Type: Bug > Affects Versions: 5.4.0.Final > Reporter: Mirko Streckenbach > > The following snippet fails with a NullPointerException: > {code} > Connection c = ConnectionManager.create(dbUrl, properties); > System.err.println("closed1=" + c.isClosed()); > c.close(); > System.err.println("closed2=" + c.isClosed()); > {code} > output: > {code} > closed1=false > java.lang.NullPointerException > at com.arjuna.ats.internal.jdbc.ConnectionImple.closeImpl(ConnectionImple.java:389) > at com.arjuna.ats.internal.jdbc.ConnectionImple.close(ConnectionImple.java:381) > at org.jboss.narayana.quickstarts.jta.Main.main(Main.java:140) > {code} > If it is modified to "use" the init the physical connect before closing, it will not throw an > exception, but returns false for isClosed after the close: > {code} > Connection c = ConnectionManager.create(dbUrl, properties); > System.err.println("closed1=" + c.isClosed()); > c.createStatement().close(); > System.err.println("closed2=" + c.isClosed()); > c.close(); > System.err.println("closed3=" + c.isClosed()); > {code} > output: > {code} > closed1=false > closed2=false > closed3=false > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 04:18:00 2016 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Tue, 29 Nov 2016 04:18:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2774) Leak when imported subordinate transactions are rolled back by reaper before remote reaper In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2774?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13330643#comment-13330643 ] RH Bugzilla Integration commented on JBTM-2774: ----------------------------------------------- Ondrej Chaloupka changed the Status of [bug 1387316|https://bugzilla.redhat.com/show_bug.cgi?id=1387316] from ON_QA to VERIFIED > Leak when imported subordinate transactions are rolled back by reaper before remote reaper > ------------------------------------------------------------------------------------------ > > Key: JBTM-2774 > URL: https://issues.jboss.org/browse/JBTM-2774 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: Application Server Integration > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Priority: Critical > Fix For: 4.17.38, 5.2.20.Final, 5.4.0.Final > > > When using the EJB remoting transport that layers over the top of JCA it is possible for a race condition between the two reapers. > Normally you have server 1 and server 2. Each of these insert the TwoPhaseCoordinator in their TransactionReaper. If the TransactionReaper in server 2 fires first then it will rollback the TPC. > When server 1 Reaper EJB remoting transport fires it will try to rollback at server 2 also and it is this that should be safe to remove the transactionImple reference. > At the time of reporting the reference is not removed though and so the reference to the TransactionImple is not removed. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 08:47:01 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Tue, 29 Nov 2016 08:47:01 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2799) Javadoc Tomcat module In-Reply-To: References: Message-ID: Gytis Trikleris created JBTM-2799: ------------------------------------- Summary: Javadoc Tomcat module Key: JBTM-2799 URL: https://issues.jboss.org/browse/JBTM-2799 Project: JBoss Transaction Manager Issue Type: Task Components: Application Server Integration Reporter: Gytis Trikleris Assignee: Gytis Trikleris Priority: Minor Fix For: 5.next -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 08:47:01 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Tue, 29 Nov 2016 08:47:01 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2799) Javadoc Tomcat module In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2799?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Work on JBTM-2799 started by Gytis Trikleris. --------------------------------------------- > Javadoc Tomcat module > --------------------- > > Key: JBTM-2799 > URL: https://issues.jboss.org/browse/JBTM-2799 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Application Server Integration > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Priority: Minor > Fix For: 5.next > > -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 09:06:00 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Tue, 29 Nov 2016 09:06:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2794) Javadoc compensations framework In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2794?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gytis Trikleris updated JBTM-2794: ---------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > Javadoc compensations framework > ------------------------------- > > Key: JBTM-2794 > URL: https://issues.jboss.org/browse/JBTM-2794 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Compensations > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Fix For: 5.next > > > Compensations framework internal classes do not have javadocs. They should be documented to make maintenance easier in the future. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 09:51:05 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Tue, 29 Nov 2016 09:51:05 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2799) Javadoc Tomcat module In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2799?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Issue was automatically transitioned when Gytis Trikleris created pull request #1093 in GitHub ---------------------------------------------------------------------------------------------- Status: Pull Request Sent (was: Coding In Progress) > Javadoc Tomcat module > --------------------- > > Key: JBTM-2799 > URL: https://issues.jboss.org/browse/JBTM-2799 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Application Server Integration > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Priority: Minor > Fix For: 5.next > > -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 09:54:01 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 29 Nov 2016 09:54:01 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2800) Miscellaneous qa suite improvements In-Reply-To: References: Message-ID: Tom Jenkinson created JBTM-2800: ----------------------------------- Summary: Miscellaneous qa suite improvements Key: JBTM-2800 URL: https://issues.jboss.org/browse/JBTM-2800 Project: JBoss Transaction Manager Issue Type: Enhancement Reporter: Tom Jenkinson Some of the tests are not easy to debug and during debug you have to constantly move your TaskImpl.properties out of the way so provide a way to get more logging and allow setting options such as remote debugger easier. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 09:56:02 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 29 Nov 2016 09:56:02 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2801) ObjectStoreTest.java assumes that Uids are returned in order which is not guaranteed In-Reply-To: References: Message-ID: Tom Jenkinson created JBTM-2801: ----------------------------------- Summary: ObjectStoreTest.java assumes that Uids are returned in order which is not guaranteed Key: JBTM-2801 URL: https://issues.jboss.org/browse/JBTM-2801 Project: JBoss Transaction Manager Issue Type: Bug Reporter: Tom Jenkinson The object store API does not make guarantees about the order -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 09:57:02 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 29 Nov 2016 09:57:02 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2802) AtomicObject3.java hammer test hard to debug In-Reply-To: References: Message-ID: Tom Jenkinson created JBTM-2802: ----------------------------------- Summary: AtomicObject3.java hammer test hard to debug Key: JBTM-2802 URL: https://issues.jboss.org/browse/JBTM-2802 Project: JBoss Transaction Manager Issue Type: Task Reporter: Tom Jenkinson As the test outputs to console with println and has many many threads it is too hard to debug. Use log4j. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 10:01:25 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 29 Nov 2016 10:01:25 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2803) compareHierarchies traceln's wrong elements In-Reply-To: References: Message-ID: Tom Jenkinson created JBTM-2803: ----------------------------------- Summary: compareHierarchies traceln's wrong elements Key: JBTM-2803 URL: https://issues.jboss.org/browse/JBTM-2803 Project: JBoss Transaction Manager Issue Type: Bug Reporter: Tom Jenkinson If compareHierarchies is called (only done in trace iirc) then the right elements are compared but if they are not equal the wrong elements are compared IOOBE are possible. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 10:02:00 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 29 Nov 2016 10:02:00 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2804) ObjStoreBrowserTest.java can miss a recovery scan In-Reply-To: References: Message-ID: Tom Jenkinson created JBTM-2804: ----------------------------------- Summary: ObjStoreBrowserTest.java can miss a recovery scan Key: JBTM-2804 URL: https://issues.jboss.org/browse/JBTM-2804 Project: JBoss Transaction Manager Issue Type: Bug Reporter: Tom Jenkinson As the ObjStoreBrowserTest.java uses a socket to ask for recovery from a threaded recovery manager it is possible that the recovery manager is just completing a scan and so the state the test expects will not be satisfied. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 10:11:05 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 29 Nov 2016 10:11:05 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2787) TestGroup_txcore_recovery::Recovery_Crash_StateManager_Test004 fails with DB2 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2787?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2787: -------------------------------- Issue Type: Task (was: Bug) > TestGroup_txcore_recovery::Recovery_Crash_StateManager_Test004 fails with DB2 > ----------------------------------------------------------------------------- > > Key: JBTM-2787 > URL: https://issues.jboss.org/browse/JBTM-2787 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Testing > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > > When DB2 tests are running (this is a very slow configuration for CI) the recovery manager process appears to be interfering with the setup of the test. > Set up of test: > 2016-11-06 16:04:03,172 out: 2016-11-06 16:04:03,172 [main] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:4 could not be transitioned to committed > Recovery manager process: > 2016-11-06 16:04:24,188 out: 2016-11-06 16:04:24,188 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:1 could not be transitioned to committed > 2016-11-06 16:04:24,225 out: 2016-11-06 16:04:24,225 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012016: PersistenceRecord::topLevelCommit - commit_state call failed for 0:ffffac11000a:c397:581f5466:1 > 2016-11-06 16:04:24,225 out: 2016-11-06 16:04:24,225 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012022: PersistenceRecord::topLevelCommit - commit_state error > 2016-11-06 16:04:25,504 out: 2016-11-06 16:04:25,504 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:3 could not be transitioned to committed > 2016-11-06 16:04:25,549 out: 2016-11-06 16:04:25,549 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012016: PersistenceRecord::topLevelCommit - commit_state call failed for 0:ffffac11000a:c397:581f5466:3 > 2016-11-06 16:04:25,549 out: 2016-11-06 16:04:25,549 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012022: PersistenceRecord::topLevelCommit - commit_state error > 2016-11-06 16:04:37,523 out: 2016-11-06 16:04:37,523 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:4 could not be transitioned to committed -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 10:11:09 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 29 Nov 2016 10:11:09 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2673) ThreadUtil getThreadId(Thread) ignores argument In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2673?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2673: -------------------------------- Fix Version/s: 5.next > ThreadUtil getThreadId(Thread) ignores argument > ----------------------------------------------- > > Key: JBTM-2673 > URL: https://issues.jboss.org/browse/JBTM-2673 > Project: JBoss Transaction Manager > Issue Type: Bug > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Priority: Minor > Fix For: 5.next > > > During investigation of https://developer.jboss.org/thread/269784?start=15&tstart=0 it was observed that the ThreadUtil implementation does not use the Thread argument and simply uses a ThreadLocal: > https://github.com/jbosstm/narayana/blob/master/ArjunaCore/arjuna/classes/com/arjuna/ats/arjuna/utils/ThreadUtil.java#L51 -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 10:12:05 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 29 Nov 2016 10:12:05 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2673) ThreadUtil getThreadId(Thread) ignores argument In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2673?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson reopened JBTM-2673: --------------------------------- > ThreadUtil getThreadId(Thread) ignores argument > ----------------------------------------------- > > Key: JBTM-2673 > URL: https://issues.jboss.org/browse/JBTM-2673 > Project: JBoss Transaction Manager > Issue Type: Bug > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Priority: Minor > Fix For: 5.next > > > During investigation of https://developer.jboss.org/thread/269784?start=15&tstart=0 it was observed that the ThreadUtil implementation does not use the Thread argument and simply uses a ThreadLocal: > https://github.com/jbosstm/narayana/blob/master/ArjunaCore/arjuna/classes/com/arjuna/ats/arjuna/utils/ThreadUtil.java#L51 -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 10:13:01 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 29 Nov 2016 10:13:01 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2800) Miscellaneous qa suite improvements In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2800?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2800: -------------------------------- Issue Type: Task (was: Enhancement) > Miscellaneous qa suite improvements > ----------------------------------- > > Key: JBTM-2800 > URL: https://issues.jboss.org/browse/JBTM-2800 > Project: JBoss Transaction Manager > Issue Type: Task > Reporter: Tom Jenkinson > > Some of the tests are not easy to debug and during debug you have to constantly move your TaskImpl.properties out of the way so provide a way to get more logging and allow setting options such as remote debugger easier. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 10:13:02 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 29 Nov 2016 10:13:02 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2804) ObjStoreBrowserTest.java can miss a recovery scan In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2804?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2804: -------------------------------- Issue Type: Task (was: Bug) > ObjStoreBrowserTest.java can miss a recovery scan > ------------------------------------------------- > > Key: JBTM-2804 > URL: https://issues.jboss.org/browse/JBTM-2804 > Project: JBoss Transaction Manager > Issue Type: Task > Reporter: Tom Jenkinson > > As the ObjStoreBrowserTest.java uses a socket to ask for recovery from a threaded recovery manager it is possible that the recovery manager is just completing a scan and so the state the test expects will not be satisfied. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 10:13:02 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Tue, 29 Nov 2016 10:13:02 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2801) ObjectStoreTest.java assumes that Uids are returned in order which is not guaranteed In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2801?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2801: -------------------------------- Issue Type: Task (was: Bug) > ObjectStoreTest.java assumes that Uids are returned in order which is not guaranteed > ------------------------------------------------------------------------------------ > > Key: JBTM-2801 > URL: https://issues.jboss.org/browse/JBTM-2801 > Project: JBoss Transaction Manager > Issue Type: Task > Reporter: Tom Jenkinson > > The object store API does not make guarantees about the order -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 16:32:01 2016 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Tue, 29 Nov 2016 16:32:01 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2749) Add an SPI method to lookup imported transactions by Xid In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2749?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13331198#comment-13331198 ] RH Bugzilla Integration commented on JBTM-2749: ----------------------------------------------- Miroslav Sochurek changed the Status of [bug 1399703|https://bugzilla.redhat.com/show_bug.cgi?id=1399703] from NEW to ASSIGNED > Add an SPI method to lookup imported transactions by Xid > -------------------------------------------------------- > > Key: JBTM-2749 > URL: https://issues.jboss.org/browse/JBTM-2749 > Project: JBoss Transaction Manager > Issue Type: Enhancement > Components: JCA, SPI > Affects Versions: 5.3.4.Final > Reporter: Michael Musgrove > Assignee: Michael Musgrove > Priority: Critical > Fix For: 4.17.37, 5.2.19.Final, 5.3.5.Final > > > When EJB remoting sees an incoming transaction it needs to determine whether it is one that the TM already knows about and should just resume it or if it needs to start a new subordinate transaction for it on this node. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Tue Nov 29 22:15:02 2016 From: issues at jboss.org (Mirko Streckenbach (JIRA)) Date: Tue, 29 Nov 2016 22:15:02 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2798) Connection.isClosed throws NullPointerException or returns false after close In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2798?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13331249#comment-13331249 ] Mirko Streckenbach commented on JBTM-2798: ------------------------------------------ Added the fixes to the pull request. Some adjustments of an existing texts were required, so somebody with deeper knowledge than me should have a look at this. > Connection.isClosed throws NullPointerException or returns false after close > ---------------------------------------------------------------------------- > > Key: JBTM-2798 > URL: https://issues.jboss.org/browse/JBTM-2798 > Project: JBoss Transaction Manager > Issue Type: Bug > Affects Versions: 5.4.0.Final > Reporter: Mirko Streckenbach > > The following snippet fails with a NullPointerException: > {code} > Connection c = ConnectionManager.create(dbUrl, properties); > System.err.println("closed1=" + c.isClosed()); > c.close(); > System.err.println("closed2=" + c.isClosed()); > {code} > output: > {code} > closed1=false > java.lang.NullPointerException > at com.arjuna.ats.internal.jdbc.ConnectionImple.closeImpl(ConnectionImple.java:389) > at com.arjuna.ats.internal.jdbc.ConnectionImple.close(ConnectionImple.java:381) > at org.jboss.narayana.quickstarts.jta.Main.main(Main.java:140) > {code} > If it is modified to "use" the init the physical connect before closing, it will not throw an > exception, but returns false for isClosed after the close: > {code} > Connection c = ConnectionManager.create(dbUrl, properties); > System.err.println("closed1=" + c.isClosed()); > c.createStatement().close(); > System.err.println("closed2=" + c.isClosed()); > c.close(); > System.err.println("closed3=" + c.isClosed()); > {code} > output: > {code} > closed1=false > closed2=false > closed3=false > {code} -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 08:39:19 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Wed, 30 Nov 2016 08:39:19 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2799) Javadoc Tomcat module In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2799?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gytis Trikleris updated JBTM-2799: ---------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > Javadoc Tomcat module > --------------------- > > Key: JBTM-2799 > URL: https://issues.jboss.org/browse/JBTM-2799 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Application Server Integration > Reporter: Gytis Trikleris > Assignee: Gytis Trikleris > Priority: Minor > Fix For: 5.next > > -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:02 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:02 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2786) MySQL JDBCStore occasionally gets deadlock exception In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2786?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2786: -------------------------------- Issue Type: Bug (was: Task) > MySQL JDBCStore occasionally gets deadlock exception > ---------------------------------------------------- > > Key: JBTM-2786 > URL: https://issues.jboss.org/browse/JBTM-2786 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: Transaction Core > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > Occasionally in QA tests we see the MySQL CI job fail with messages about deadlocks. > From what I can see from http://stackoverflow.com/questions/2332768/how-to-avoid-mysql-deadlock-found-when-trying-to-get-lock-try-restarting-trans it can be because the where clauses are not ordered the same so a table lock can happen. Reordering the where clauses would hopefully fix this. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:05 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:05 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2673) ThreadUtil getThreadId(Thread) ignores argument In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2673?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2673: -------------------------------- Component/s: JTS Transaction Core > ThreadUtil getThreadId(Thread) ignores argument > ----------------------------------------------- > > Key: JBTM-2673 > URL: https://issues.jboss.org/browse/JBTM-2673 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JTS, Transaction Core > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Priority: Minor > Fix For: 5.next > > > During investigation of https://developer.jboss.org/thread/269784?start=15&tstart=0 it was observed that the ThreadUtil implementation does not use the Thread argument and simply uses a ThreadLocal: > https://github.com/jbosstm/narayana/blob/master/ArjunaCore/arjuna/classes/com/arjuna/ats/arjuna/utils/ThreadUtil.java#L51 -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:05 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:05 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2795) Quickstart can not build the karaf In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2795: -------------------------------- Issue Type: Task (was: Bug) > Quickstart can not build the karaf > ---------------------------------- > > Key: JBTM-2795 > URL: https://issues.jboss.org/browse/JBTM-2795 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Build System, Demonstrator > Reporter: Amos Feng > Assignee: Amos Feng > Fix For: 5.next > > > {code} > [ERROR] Failed to execute goal org.apache.karaf.tooling:karaf-maven-plugin:4.1.0-SNAPSHOT:kar (package) on project framework: Execution package of goal org.apache.karaf.tooling:karaf-maven-plugin:4.1.0-SNAPSHOT:kar failed: An API incompatibility was encountered while executing org.apache.karaf.tooling:karaf-maven-plugin:4.1.0-SNAPSHOT:kar: java.lang.NoSuchMethodError: org.apache.maven.wagon.providers.http.AbstractHttpClientWagon.getReadTimeout()I > {code} > It looks like we need to upgrade the maven and to use the build.bat -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:06 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:06 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2804) ObjStoreBrowserTest.java can miss a recovery scan In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2804?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2804: -------------------------------- Component/s: Testing > ObjStoreBrowserTest.java can miss a recovery scan > ------------------------------------------------- > > Key: JBTM-2804 > URL: https://issues.jboss.org/browse/JBTM-2804 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Testing > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > As the ObjStoreBrowserTest.java uses a socket to ask for recovery from a threaded recovery manager it is possible that the recovery manager is just completing a scan and so the state the test expects will not be satisfied. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:06 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:06 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2803) compareHierarchies traceln's wrong elements In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2803?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2803: -------------------------------- Component/s: Transaction Core > compareHierarchies traceln's wrong elements > ------------------------------------------- > > Key: JBTM-2803 > URL: https://issues.jboss.org/browse/JBTM-2803 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: Transaction Core > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > If compareHierarchies is called (only done in trace iirc) then the right elements are compared but if they are not equal the wrong elements are compared IOOBE are possible. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:09 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:09 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2803) compareHierarchies traceln's wrong elements In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2803?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2803: -------------------------------- Component/s: JTS (was: Transaction Core) > compareHierarchies traceln's wrong elements > ------------------------------------------- > > Key: JBTM-2803 > URL: https://issues.jboss.org/browse/JBTM-2803 > Project: JBoss Transaction Manager > Issue Type: Bug > Components: JTS > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > If compareHierarchies is called (only done in trace iirc) then the right elements are compared but if they are not equal the wrong elements are compared IOOBE are possible. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:10 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:10 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2801) ObjectStoreTest.java assumes that Uids are returned in order which is not guaranteed In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2801?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2801: -------------------------------- Component/s: Testing > ObjectStoreTest.java assumes that Uids are returned in order which is not guaranteed > ------------------------------------------------------------------------------------ > > Key: JBTM-2801 > URL: https://issues.jboss.org/browse/JBTM-2801 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Testing > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > The object store API does not make guarantees about the order -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:10 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:10 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2800) Miscellaneous qa suite improvements In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2800?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2800: -------------------------------- Component/s: Testing > Miscellaneous qa suite improvements > ----------------------------------- > > Key: JBTM-2800 > URL: https://issues.jboss.org/browse/JBTM-2800 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Testing > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > Some of the tests are not easy to debug and during debug you have to constantly move your TaskImpl.properties out of the way so provide a way to get more logging and allow setting options such as remote debugger easier. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:11 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:11 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2804) ObjStoreBrowserTest.java can miss a recovery scan In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2804?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson resolved JBTM-2804. --------------------------------- Fix Version/s: 5.next Assignee: Tom Jenkinson Resolution: Done > ObjStoreBrowserTest.java can miss a recovery scan > ------------------------------------------------- > > Key: JBTM-2804 > URL: https://issues.jboss.org/browse/JBTM-2804 > Project: JBoss Transaction Manager > Issue Type: Task > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > As the ObjStoreBrowserTest.java uses a socket to ask for recovery from a threaded recovery manager it is possible that the recovery manager is just completing a scan and so the state the test expects will not be satisfied. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:12 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:12 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2801) ObjectStoreTest.java assumes that Uids are returned in order which is not guaranteed In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2801?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2801: -------------------------------- Fix Version/s: 5.next > ObjectStoreTest.java assumes that Uids are returned in order which is not guaranteed > ------------------------------------------------------------------------------------ > > Key: JBTM-2801 > URL: https://issues.jboss.org/browse/JBTM-2801 > Project: JBoss Transaction Manager > Issue Type: Task > Reporter: Tom Jenkinson > Fix For: 5.next > > > The object store API does not make guarantees about the order -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:12 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:12 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2801) ObjectStoreTest.java assumes that Uids are returned in order which is not guaranteed In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2801?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson resolved JBTM-2801. --------------------------------- Assignee: Tom Jenkinson Resolution: Done > ObjectStoreTest.java assumes that Uids are returned in order which is not guaranteed > ------------------------------------------------------------------------------------ > > Key: JBTM-2801 > URL: https://issues.jboss.org/browse/JBTM-2801 > Project: JBoss Transaction Manager > Issue Type: Task > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > The object store API does not make guarantees about the order -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:13 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:13 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2802) AtomicObject3.java hammer test hard to debug In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2802?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson resolved JBTM-2802. --------------------------------- Fix Version/s: 5.next Assignee: Tom Jenkinson Resolution: Done > AtomicObject3.java hammer test hard to debug > -------------------------------------------- > > Key: JBTM-2802 > URL: https://issues.jboss.org/browse/JBTM-2802 > Project: JBoss Transaction Manager > Issue Type: Task > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > As the test outputs to console with println and has many many threads it is too hard to debug. Use log4j. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:14 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:14 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2803) compareHierarchies traceln's wrong elements In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2803?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson resolved JBTM-2803. --------------------------------- Fix Version/s: 5.next Assignee: Tom Jenkinson Resolution: Done > compareHierarchies traceln's wrong elements > ------------------------------------------- > > Key: JBTM-2803 > URL: https://issues.jboss.org/browse/JBTM-2803 > Project: JBoss Transaction Manager > Issue Type: Bug > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > If compareHierarchies is called (only done in trace iirc) then the right elements are compared but if they are not equal the wrong elements are compared IOOBE are possible. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:10 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:10 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2802) AtomicObject3.java hammer test hard to debug In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2802?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2802: -------------------------------- Component/s: Testing > AtomicObject3.java hammer test hard to debug > -------------------------------------------- > > Key: JBTM-2802 > URL: https://issues.jboss.org/browse/JBTM-2802 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Testing > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > As the test outputs to console with println and has many many threads it is too hard to debug. Use log4j. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:15 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:15 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2673) ThreadUtil getThreadId(Thread) ignores argument In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2673?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson resolved JBTM-2673. --------------------------------- Resolution: Done > ThreadUtil getThreadId(Thread) ignores argument > ----------------------------------------------- > > Key: JBTM-2673 > URL: https://issues.jboss.org/browse/JBTM-2673 > Project: JBoss Transaction Manager > Issue Type: Bug > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Priority: Minor > Fix For: 5.next > > > During investigation of https://developer.jboss.org/thread/269784?start=15&tstart=0 it was observed that the ThreadUtil implementation does not use the Thread argument and simply uses a ThreadLocal: > https://github.com/jbosstm/narayana/blob/master/ArjunaCore/arjuna/classes/com/arjuna/ats/arjuna/utils/ThreadUtil.java#L51 -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:17 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:17 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2787) TestGroup_txcore_recovery::Recovery_Crash_StateManager_Test004 fails with DB2 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2787?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2787: -------------------------------- Fix Version/s: 5.next > TestGroup_txcore_recovery::Recovery_Crash_StateManager_Test004 fails with DB2 > ----------------------------------------------------------------------------- > > Key: JBTM-2787 > URL: https://issues.jboss.org/browse/JBTM-2787 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Testing > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > When DB2 tests are running (this is a very slow configuration for CI) the recovery manager process appears to be interfering with the setup of the test. > Set up of test: > 2016-11-06 16:04:03,172 out: 2016-11-06 16:04:03,172 [main] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:4 could not be transitioned to committed > Recovery manager process: > 2016-11-06 16:04:24,188 out: 2016-11-06 16:04:24,188 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:1 could not be transitioned to committed > 2016-11-06 16:04:24,225 out: 2016-11-06 16:04:24,225 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012016: PersistenceRecord::topLevelCommit - commit_state call failed for 0:ffffac11000a:c397:581f5466:1 > 2016-11-06 16:04:24,225 out: 2016-11-06 16:04:24,225 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012022: PersistenceRecord::topLevelCommit - commit_state error > 2016-11-06 16:04:25,504 out: 2016-11-06 16:04:25,504 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:3 could not be transitioned to committed > 2016-11-06 16:04:25,549 out: 2016-11-06 16:04:25,549 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012016: PersistenceRecord::topLevelCommit - commit_state call failed for 0:ffffac11000a:c397:581f5466:3 > 2016-11-06 16:04:25,549 out: 2016-11-06 16:04:25,549 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012022: PersistenceRecord::topLevelCommit - commit_state error > 2016-11-06 16:04:37,523 out: 2016-11-06 16:04:37,523 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:4 could not be transitioned to committed -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:20 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:20 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2787) TestGroup_txcore_recovery::Recovery_Crash_StateManager_Test004 fails with DB2 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2787?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2787: -------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > TestGroup_txcore_recovery::Recovery_Crash_StateManager_Test004 fails with DB2 > ----------------------------------------------------------------------------- > > Key: JBTM-2787 > URL: https://issues.jboss.org/browse/JBTM-2787 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Testing > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > When DB2 tests are running (this is a very slow configuration for CI) the recovery manager process appears to be interfering with the setup of the test. > Set up of test: > 2016-11-06 16:04:03,172 out: 2016-11-06 16:04:03,172 [main] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:4 could not be transitioned to committed > Recovery manager process: > 2016-11-06 16:04:24,188 out: 2016-11-06 16:04:24,188 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:1 could not be transitioned to committed > 2016-11-06 16:04:24,225 out: 2016-11-06 16:04:24,225 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012016: PersistenceRecord::topLevelCommit - commit_state call failed for 0:ffffac11000a:c397:581f5466:1 > 2016-11-06 16:04:24,225 out: 2016-11-06 16:04:24,225 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012022: PersistenceRecord::topLevelCommit - commit_state error > 2016-11-06 16:04:25,504 out: 2016-11-06 16:04:25,504 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:3 could not be transitioned to committed > 2016-11-06 16:04:25,549 out: 2016-11-06 16:04:25,549 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012016: PersistenceRecord::topLevelCommit - commit_state call failed for 0:ffffac11000a:c397:581f5466:3 > 2016-11-06 16:04:25,549 out: 2016-11-06 16:04:25,549 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012022: PersistenceRecord::topLevelCommit - commit_state error > 2016-11-06 16:04:37,523 out: 2016-11-06 16:04:37,523 [Periodic Recovery] WARN com.arjuna.ats.arjuna - ARJUNA012382: Action id 0:ffffac11000a:c397:581f5466:4 could not be transitioned to committed -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:21 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:21 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2800) Miscellaneous qa suite improvements In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2800?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2800: -------------------------------- Fix Version/s: 5.next > Miscellaneous qa suite improvements > ----------------------------------- > > Key: JBTM-2800 > URL: https://issues.jboss.org/browse/JBTM-2800 > Project: JBoss Transaction Manager > Issue Type: Task > Reporter: Tom Jenkinson > Fix For: 5.next > > > Some of the tests are not easy to debug and during debug you have to constantly move your TaskImpl.properties out of the way so provide a way to get more logging and allow setting options such as remote debugger easier. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:22 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:22 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2800) Miscellaneous qa suite improvements In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2800?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson resolved JBTM-2800. --------------------------------- Assignee: Tom Jenkinson Resolution: Done > Miscellaneous qa suite improvements > ----------------------------------- > > Key: JBTM-2800 > URL: https://issues.jboss.org/browse/JBTM-2800 > Project: JBoss Transaction Manager > Issue Type: Task > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > Some of the tests are not easy to debug and during debug you have to constantly move your TaskImpl.properties out of the way so provide a way to get more logging and allow setting options such as remote debugger easier. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:23 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:23 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2786) MySQL JDBCStore occasionally gets deadlock exception In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2786?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2786: -------------------------------- Status: Resolved (was: Pull Request Sent) Resolution: Done > MySQL JDBCStore occasionally gets deadlock exception > ---------------------------------------------------- > > Key: JBTM-2786 > URL: https://issues.jboss.org/browse/JBTM-2786 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Transaction Core > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > > Occasionally in QA tests we see the MySQL CI job fail with messages about deadlocks. > From what I can see from http://stackoverflow.com/questions/2332768/how-to-avoid-mysql-deadlock-found-when-trying-to-get-lock-try-restarting-trans it can be because the where clauses are not ordered the same so a table lock can happen. Reordering the where clauses would hopefully fix this. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 09:08:24 2016 From: issues at jboss.org (Tom Jenkinson (JIRA)) Date: Wed, 30 Nov 2016 09:08:24 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-2786) MySQL JDBCStore occasionally gets deadlock exception In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-2786?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Jenkinson updated JBTM-2786: -------------------------------- Fix Version/s: 5.next > MySQL JDBCStore occasionally gets deadlock exception > ---------------------------------------------------- > > Key: JBTM-2786 > URL: https://issues.jboss.org/browse/JBTM-2786 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Transaction Core > Reporter: Tom Jenkinson > Assignee: Tom Jenkinson > Fix For: 5.next > > > Occasionally in QA tests we see the MySQL CI job fail with messages about deadlocks. > From what I can see from http://stackoverflow.com/questions/2332768/how-to-avoid-mysql-deadlock-found-when-trying-to-get-lock-try-restarting-trans it can be because the where clauses are not ordered the same so a table lock can happen. Reordering the where clauses would hopefully fix this. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 13:59:01 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Wed, 30 Nov 2016 13:59:01 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-928) ATParticipantCrashAndRecover Crash Recovery test needs completing In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-928?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gytis Trikleris reassigned JBTM-928: ------------------------------------ Assignee: (was: Gytis Trikleris) > ATParticipantCrashAndRecover Crash Recovery test needs completing > ----------------------------------------------------------------- > > Key: JBTM-928 > URL: https://issues.jboss.org/browse/JBTM-928 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Testing, XTS > Affects Versions: 4.17.0.M1/5.0.0.M1 > Reporter: Tom Jenkinson > > This test was not completed due to a problem with JBossWS that prevented the test case from being possible. -- This message was sent by Atlassian JIRA (v7.2.3#72005) From issues at jboss.org Wed Nov 30 14:22:09 2016 From: issues at jboss.org (Gytis Trikleris (JIRA)) Date: Wed, 30 Nov 2016 14:22:09 -0500 (EST) Subject: [jbossts-issues] [JBoss JIRA] (JBTM-1801) Move all test properties into root pom.xml In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/JBTM-1801?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gytis Trikleris reassigned JBTM-1801: ------------------------------------- Assignee: (was: Gytis Trikleris) > Move all test properties into root pom.xml > ------------------------------------------ > > Key: JBTM-1801 > URL: https://issues.jboss.org/browse/JBTM-1801 > Project: JBoss Transaction Manager > Issue Type: Task > Components: Build System > Reporter: Paul Robinson > Priority: Trivial > Fix For: 5.later > > > We have these test properties duplicated in many places: > https://github.com/jbosstm/narayana/blob/master/XTS/localjunit/pom.xml#L22 > We should move them up to the root pom.xml to simplify maintenance. As part of this task you need to hunt out all these usages and similar. Then come up with a common set of properties that works in all cases and move to the root pom.xml. -- This message was sent by Atlassian JIRA (v7.2.3#72005)