From 1a26f3ec7bb260acceb781f28c31219d32ce1e87 Mon Sep 17 00:00:00 2001 From: Ben Xu Date: Thu, 15 Aug 2024 14:52:54 -0700 Subject: [PATCH] Reapply "specify unused port" This reverts commit 6cfa5b98aed23abc08aa056a8e220de8c7a65bea. --- software/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/software/worker.py b/software/worker.py index 12b19ce..82b96c9 100644 --- a/software/worker.py +++ b/software/worker.py @@ -72,5 +72,5 @@ async def entrypoint(ctx: JobContext): if __name__ == "__main__": # Initialize the worker with the entrypoint cli.run_app( - WorkerOptions(entrypoint_fnc=entrypoint, api_key="devkey", api_secret="secret") + WorkerOptions(entrypoint_fnc=entrypoint, api_key="devkey", api_secret="secret", port=8082) )