Delay Narayana recovery manager until it's started explicitly

Closes gh-9641
This commit is contained in:
Gytis Trikleris 2017-07-11 15:14:26 +02:00 committed by Andy Wilkinson
parent 5a8a86375d
commit f43ad00129
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,7 @@ import javax.jms.Message;
import javax.transaction.TransactionManager;
import javax.transaction.UserTransaction;
import com.arjuna.ats.arjuna.recovery.RecoveryManager;
import com.arjuna.ats.jbossatx.jta.RecoveryManagerService;
import org.jboss.narayana.jta.jms.TransactionHelper;
import org.jboss.tm.XAResourceRecoveryRegistry;
@ -115,6 +116,7 @@ public class NarayanaJtaConfiguration {
@Bean
@DependsOn("narayanaConfiguration")
public RecoveryManagerService narayanaRecoveryManagerService() {
RecoveryManager.delayRecoveryManagerThread();
return new RecoveryManagerService();
}