Skip to content

Commit

Permalink
Merge pull request #895 from csiltala/develop
Browse files Browse the repository at this point in the history
daemon: support environment variables containing = for docker nodes
  • Loading branch information
bharnden authored Feb 17, 2025
2 parents b74e2d7 + d5b44f7 commit 229eeb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/core/nodes/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def startup(self) -> None:
for line in output.split("\x00"):
if not line:
continue
key, value = line.split("=")
key, value = line.split("=", 1)
self.env[key] = value
logger.debug("node(%s) pid: %s", self.name, self.pid)
self.up = True
Expand Down

0 comments on commit 229eeb1

Please sign in to comment.