Compare commits

...

2 Commits

Author SHA1 Message Date
bruno-valante
52f700c86e
Fix node launch process in test framework (#305)
Some checks are pending
abi-consistent-check / build-and-compare (push) Waiting to run
code-coverage / unittest-cov (push) Waiting to run
rust / check (push) Waiting to run
rust / test (push) Waiting to run
rust / lints (push) Waiting to run
functional-test / test (push) Waiting to run
2024-12-26 20:49:32 +08:00
Bo QIU
4e5b14c0a3
Adjust debug log config (#304) 2024-12-26 17:23:57 +08:00
2 changed files with 4 additions and 2 deletions

View File

@ -1 +1 @@
debug,hyper=info,h2=info,rpc=info,discv5=info,jsonrpsee_http_server=info
debug,hyper=info,h2=info,rpc=info,discv5=info,jsonrpsee_http_server=info,multistream_select=info,libp2p_core=info,libp2p_gossipsub=info

View File

@ -215,10 +215,12 @@ class TestFramework:
if i > 0:
time.sleep(1)
node.start()
node.wait_for_rpc_connection()
self.log.info("Wait the zgs_node launch for %d seconds", self.launch_wait_seconds)
time.sleep(self.launch_wait_seconds)
for node in self.nodes:
node.wait_for_rpc_connection()
def add_arguments(self, parser: argparse.ArgumentParser):
parser.add_argument(