Skip to content

Commit

Permalink
TEIID-5453 correcting the forking behavior with local
Browse files Browse the repository at this point in the history
  • Loading branch information
shawkins committed Aug 24, 2018
1 parent 1cdc544 commit eb2a81c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -556,7 +556,7 @@ public CacheDirective getCacheDirective() throws TranslatorException {
@Override
public boolean isForkable() {
return this.connector.isForkable()
&& (!this.requestMsg.isTransactional() || this.connector.getTransactionSupport() != TransactionSupport.XA);
&& (!this.requestMsg.isTransactional() || this.connector.getTransactionSupport() == TransactionSupport.NONE);
}

@Override
Expand Down

0 comments on commit eb2a81c

Please sign in to comment.