mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 18:02:41 +02:00
🐛 — Fix passing the URL of the server to the agent
This commit is contained in:
parent
dfa97c72d0
commit
8fd45302d2
1 changed files with 1 additions and 1 deletions
|
@ -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())
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue