From 6cfa5b98aed23abc08aa056a8e220de8c7a65bea Mon Sep 17 00:00:00 2001 From: Ben Xu Date: Thu, 15 Aug 2024 14:52:08 -0700 Subject: [PATCH] Revert "specify unused port" This reverts commit 8f08dc2f8a14e0b597651b502c21fc2c7758b566. --- software/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/software/worker.py b/software/worker.py index 82b96c9..12b19ce 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", port=8082) + WorkerOptions(entrypoint_fnc=entrypoint, api_key="devkey", api_secret="secret") )