Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
fix teku and nimbus now for real real
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa committed Sep 14, 2023
1 parent 83185c1 commit 89cd314
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/cl/nimbus/nimbus_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -287,11 +287,11 @@ def get_config(
}
if node_artifact_uuid != package_io.NO_ARTIFACT_UUID:
files[VALIDATOR_KEYS_MOUNTPOINT_ON_CLIENT] = node_artifact_uuid

cmd_str = " ".join(cmd)
return ServiceConfig(
image = image,
ports = USED_PORTS,
cmd = cmd,
cmd = [cmd_str],
entrypoint = ENTRYPOINT_ARGS,
files = files,
private_ip_address_placeholder = PRIVATE_IP_ADDRESS_PLACEHOLDER,
Expand Down
6 changes: 3 additions & 3 deletions src/cl/teku/teku_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def get_config(
"-R",
validator_secrets_dirpath,
DEST_VALIDATOR_SECRETS_DIRPATH_IN_SERVICE_CONTAINER,
"&&"
"&&",
]
validator_flags = [
"--validator-keys={0}:{1}".format(
Expand Down Expand Up @@ -269,11 +269,11 @@ def get_config(
}
if node_artifact_uuid != package_io.NO_ARTIFACT_UUID:
files[VALIDATOR_KEYS_DIRPATH_ON_SERVICE_CONTAINER] = node_artifact_uuid

cmd_str = " ".join(cmd)
return ServiceConfig(
image = image,
ports = USED_PORTS,
cmd = cmd,
cmd = [cmd_str],
entrypoint = ENTRYPOINT_ARGS,
files = files,
private_ip_address_placeholder = PRIVATE_IP_ADDRESS_PLACEHOLDER,
Expand Down

0 comments on commit 89cd314

Please sign in to comment.