Merge pull request #1274 from ajbeamon/update-binding-tester-options

In our binding testers, stop using the TRANSACTION_LOGGING_ENABLE option
This commit is contained in:
Balachandar Namasivayam 2019-03-11 17:16:16 -07:00 committed by GitHub
commit 7d029300ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 5 deletions

View File

@ -831,7 +831,8 @@ func (sm *StackMachine) processInst(idx int, inst tuple.Tuple) {
tr.Options().SetRetryLimit(50)
tr.Options().SetMaxRetryDelay(100)
tr.Options().SetUsedDuringCommitProtectionDisable()
tr.Options().SetTransactionLoggingEnable("my_transaction")
tr.Options().SetDebugTransactionIdentifier("my_transaction")
tr.Options().SetLogTransaction()
tr.Options().SetReadLockAware()
tr.Options().SetLockAware()

View File

@ -482,7 +482,8 @@ public class AsyncStackTester {
tr.options().setRetryLimit(50);
tr.options().setMaxRetryDelay(100);
tr.options().setUsedDuringCommitProtectionDisable();
tr.options().setTransactionLoggingEnable("my_transaction");
tr.options().setDebugTransactionIdentifier("my_transaction");
tr.options().setLogTransaction();
tr.options().setReadLockAware();
tr.options().setLockAware();

View File

@ -436,7 +436,8 @@ public class StackTester {
tr.options().setRetryLimit(50);
tr.options().setMaxRetryDelay(100);
tr.options().setUsedDuringCommitProtectionDisable();
tr.options().setTransactionLoggingEnable("my_transaction");
tr.options().setDebugTransactionIdentifier("my_transaction");
tr.options().setLogTransaction();
tr.options().setReadLockAware();
tr.options().setLockAware();

View File

@ -136,7 +136,8 @@ def test_options(tr):
tr.options.set_retry_limit(50)
tr.options.set_max_retry_delay(100)
tr.options.set_used_during_commit_protection_disable()
tr.options.set_transaction_logging_enable('my_transaction')
tr.options.set_debug_transaction_identifier('my_transaction')
tr.options.set_log_transaction()
tr.options.set_read_lock_aware()
tr.options.set_lock_aware()

View File

@ -466,7 +466,8 @@ class Tester
tr.options.set_retry_limit(50)
tr.options.set_max_retry_delay(100)
tr.options.set_used_during_commit_protection_disable
tr.options.set_transaction_logging_enable('my_transaction')
tr.options.set_debug_transaction_identifier('my_transaction')
tr.options.set_log_transaction()
tr.options.set_read_lock_aware()
tr.options.set_lock_aware()