Skip to content

Commit a2187e6

Browse files
committed
Remove Python and Ruby from special Transaction.Terminated handling
Amends #475
1 parent 7aeb55b commit a2187e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/stub/retry/test_retry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def once(tx):
210210

211211
failures = []
212212
# TODO REMOVE THIS BLOCK ONCE ALL IMPLEMENT RETRYABLE EXCEPTIONS
213-
if get_driver_name() in ["javascript", "ruby", "python"]:
213+
if get_driver_name() in ["javascript"]:
214214
failures.append(
215215
["Neo.TransientError.Transaction.Terminated",
216216
"Neo.TransientError.Transaction.Terminated"])

tests/stub/retry/test_retry_clustering.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def once(tx):
225225

226226
failures = []
227227
# TODO REMOVE THIS BLOCK ONCE ALL IMPLEMENT RETRYABLE EXCEPTIONS
228-
if get_driver_name() in ["javascript", "ruby", "python"]:
228+
if get_driver_name() in ["javascript"]:
229229
failures.append(
230230
["Neo.TransientError.Transaction.Terminated",
231231
"Neo.TransientError.Transaction.Terminated"])

0 commit comments

Comments
 (0)