Skip to content

Commit

Permalink
chore: fix -s placement
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoreira-valory committed Dec 20, 2024
1 parent 6a464ce commit c2f9832
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions operate/services/deployment_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def _start_agent(self) -> None:
env["PYTHONIOENCODING"] = "utf8"
env = {**os.environ, **env}
process = subprocess.Popen( # pylint: disable=consider-using-with # nosec
args=[self._aea_bin, "run", "-s"], # TODO: Patch for Windows failing hash
args=[self._aea_bin, "-s", "run"], # TODO: Patch for Windows failing hash
cwd=working_dir / "agent",
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
Expand Down Expand Up @@ -345,7 +345,7 @@ def _start_agent(self) -> None:
env["PYTHONIOENCODING"] = "utf8"

process = subprocess.Popen( # pylint: disable=consider-using-with # nosec
args=[self._aea_bin, "run", "-s"], # TODO: Patch for Windows failing hash
args=[self._aea_bin, "-s", "run"], # TODO: Patch for Windows failing hash
cwd=str(working_dir / "agent"),
env={**os.environ, **env},
creationflags=(
Expand Down

0 comments on commit c2f9832

Please sign in to comment.