From a3f83051ca2a447afb812d7c14faec7dc85f654a Mon Sep 17 00:00:00 2001 From: jmoreira-valory Date: Fri, 20 Dec 2024 13:02:40 +0100 Subject: [PATCH] chore: patch for Windows --- operate/services/deployment_runner.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/operate/services/deployment_runner.py b/operate/services/deployment_runner.py index cd435a56..9b39a784 100644 --- a/operate/services/deployment_runner.py +++ b/operate/services/deployment_runner.py @@ -258,7 +258,8 @@ 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"], + # TODO: Patch for Windows failing hash. Revert once it's fixed on OpenAutonomy / OpenAEA + args=[self._aea_bin, "run", "-s"] if platform.system() == "Windows" else [self._aea_bin, "run"], cwd=working_dir / "agent", stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL,