Skip to content

Commit

Permalink
correct network config file name
Browse files Browse the repository at this point in the history
  • Loading branch information
gsfk committed Oct 3, 2024
1 parent 0346e92 commit 2478ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bento_beacon/config_files/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def retrieve_config_json(filename):

USE_BEACON_NETWORK = os.environ.get("BENTO_BEACON_NETWORK_ENABLED", "false").strip().lower() in ("true", "1", "t")

NETWORK_CONFIG = retrieve_config_json("network_config.json")
NETWORK_CONFIG = retrieve_config_json("beacon_network_config.json")

NETWORK_URLS = NETWORK_CONFIG.get("beacons", [])
NETWORK_DEFAULT_TIMEOUT_SECONDS = NETWORK_CONFIG.get("network_default_timeout_seconds", 30)
Expand Down

0 comments on commit 2478ba1

Please sign in to comment.