From 8f08dc2f8a14e0b597651b502c21fc2c7758b566 Mon Sep 17 00:00:00 2001 From: Ben Xu Date: Wed, 14 Aug 2024 18:10:54 -0700 Subject: [PATCH] specify unused port --- 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) )