Skip to content

Commit 2cc7945

Browse files
authored
fix: chainstore peers passing to CAR (#183)
1 parent e7b74b6 commit 2cc7945

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/business/container_apps/container_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def _get_container_run_command(self):
118118
cmd += ["-e", f"EE_R1FS_API_URL=http://{self._setup_dynamic_env_var_host_ip()}:31235"]
119119

120120
chainstore_peers = getattr(self, 'cfg_chainstore_peers', [])
121-
cmd += ["-e", f"EE_CHAINSTORE_PEERS={chainstore_peers}"]
121+
cmd += ["-e", f"EE_CHAINSTORE_PEERS='{self.json_dumps(chainstore_peers)}'"]
122122

123123

124124
# Volume mounts

ver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__VER__ = '2.9.278'
1+
__VER__ = '2.9.279'

0 commit comments

Comments
 (0)