Skip to content

Commit

Permalink
chore: Update vega node and lengthen wait delay (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomMcL authored Mar 27, 2023
1 parent b09cfd2 commit 567dc30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VEGA_SIM_VEGA_TAG=6d2caf7255339f610ffdb53a68ce3e6c60e7f2be
VEGA_SIM_VEGA_TAG=42ec67c184dd92c86d8ab245f3a907daf0c08841
VEGA_SIM_CONSOLE_TAG=develop
VEGA_DEFAULT_KEY_NAME='Key 1'
VEGA_SIM_NETWORKS_INTERNAL_TAG=main
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pipeline {
timeout(time: 50, unit: 'MINUTES')
}
parameters {
string( name: 'VEGA_VERSION', defaultValue: '6d2caf7255339f610ffdb53a68ce3e6c60e7f2be',
string( name: 'VEGA_VERSION', defaultValue: '42ec67c184dd92c86d8ab245f3a907daf0c08841',
description: 'Git branch, tag or hash of the vegaprotocol/vega repository')
string( name: 'JENKINS_SHARED_LIB_BRANCH', defaultValue: 'main',
description: 'Git branch, tag or hash of the vegaprotocol/jenkins-shared-library repository')
Expand Down
2 changes: 1 addition & 1 deletion vega_sim/null_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ def start(self, block_on_startup: bool = True) -> None:
if block_on_startup:
# Wait for startup
started = False
for _ in range(120):
for _ in range(500):
try:
requests.get(
f"http://localhost:{self.data_node_rest_port}/time"
Expand Down

0 comments on commit 567dc30

Please sign in to comment.