From 308f991812c6d3480a5e4494a8e9ce25f74df4e9 Mon Sep 17 00:00:00 2001 From: Kevin Heifner Date: Mon, 12 Dec 2022 14:44:32 -0600 Subject: [PATCH] GH-561 Specify a large time limit for new user configurable time-limit to get table. --- tests/TestHarness/Node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestHarness/Node.py b/tests/TestHarness/Node.py index 64c88e71cf..c6cd375f61 100644 --- a/tests/TestHarness/Node.py +++ b/tests/TestHarness/Node.py @@ -420,7 +420,7 @@ def getEosAccount(self, name, exitOnError=False, returnType=ReturnType.json): def getTable(self, contract, scope, table, exitOnError=False): cmdDesc = "get table" - cmd="%s %s %s %s" % (cmdDesc, contract, scope, table) + cmd="%s --time-limit 99999 %s %s %s" % (cmdDesc, contract, scope, table) msg="contract=%s, scope=%s, table=%s" % (contract, scope, table); return self.processCleosCmd(cmd, cmdDesc, exitOnError=exitOnError, exitMsg=msg)