Skip to content

Commit

Permalink
🔊 Indicate that we are using the default production config
Browse files Browse the repository at this point in the history
if no override is found
  • Loading branch information
shankari committed Aug 12, 2024
1 parent a0f0c6a commit 10624a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emission/analysis/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def get_config_data():
config_file = open('conf/analysis/debug.conf.json')
except:
if os.getenv("PROD_STAGE") == "TRUE":
print("In production environment, opening internal debug.conf")
print("In production environment, config not overridden, using default production debug.conf")
config_file = open('conf/analysis/debug.conf.prod.json')
else:
print("analysis.debug.conf.json not configured, falling back to sample, default configuration")
Expand Down

0 comments on commit 10624a6

Please sign in to comment.