Skip to content

Commit

Permalink
update_server fix
Browse files Browse the repository at this point in the history
  • Loading branch information
v00g100skr committed Feb 2, 2025
1 parent a9c3b5a commit 537ad20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/update_server/update_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
debug = os.environ.get("DEBUG") or False
port = int(os.environ.get("PORT")) or 8090
memcached_host = os.environ.get("MEMCACHED_HOST") or "memcached"
memcached_port = int(os.environ.get("MEMCACHED_PORT")) or 11211
memcached_port = int(os.environ.get("MEMCACHED_PORT") or 11211)
shared_path = os.environ.get("SHARED_PATH") or "/shared_data"
shared_beta_path = os.environ.get("SHARED_BETA_PATH") or "/shared_beta_data"

Expand Down

0 comments on commit 537ad20

Please sign in to comment.