Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 41237fb

Browse files
committed
Merge branch 'compatibilitytest' of https://github.com/OpenBazaar/openbazaar-go into compatibilitytest
2 parents a6454a2 + d77e45b commit 41237fb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

qa/test_framework/test_framework.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ def run_test(self):
6161
def send_bitcoin_cmd(self, *args):
6262
try:
6363
return self.bitcoin_api.call(*args)
64+
except ConnectionResetError:
65+
self.bitcoin_api = rpc.Proxy(btc_conf_file=self.btc_config)
66+
return self.send_bitcoin_cmd(*args)
6467
except BrokenPipeError:
6568
self.bitcoin_api = rpc.Proxy(btc_conf_file=self.btc_config)
6669
return self.send_bitcoin_cmd(*args)

0 commit comments

Comments
 (0)