From 8fd45302d218b795c5c3ba6d4d2c0b6cee267dbd Mon Sep 17 00:00:00 2001 From: Luc Didry Date: Tue, 2 Apr 2024 12:39:39 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=E2=80=94=20Fix=20passing=20the?= =?UTF-8?q?=20URL=20of=20the=20server=20to=20the=20agent?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- argos/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/argos/commands.py b/argos/commands.py index dda39dc..6de52ce 100644 --- a/argos/commands.py +++ b/argos/commands.py @@ -74,7 +74,7 @@ def agent(server_url, auth, max_tasks, wait_time, log_level): from argos.logging import logger logger.setLevel(log_level) - agent_ = ArgosAgent(server, auth, max_tasks, wait_time) + agent_ = ArgosAgent(server_url, auth, max_tasks, wait_time) asyncio.run(agent_.run())