Updated server endpoint message

This commit is contained in:
SwiftyOS
2023-09-20 16:24:18 +02:00
parent 55bcb99e91
commit b952d0d2e0

View File

@@ -77,7 +77,7 @@ class Agent:
config.loglevel = "ERROR"
config.bind = [f"0.0.0.0:{port}"]
LOG.info(f"Agent server starting on http://{config.bind[0]}")
LOG.info(f"Agent server starting on http://localhost:{port}")
asyncio.run(serve(app, config))
async def create_task(self, task_request: TaskRequestBody) -> Task: