Skip to content

Commit

Permalink
fix deployenv to be prod
Browse files Browse the repository at this point in the history
  • Loading branch information
FluxST committed Jun 14, 2023
1 parent e106900 commit ca2b84c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/pdns_pipe_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
stdout.flush()

deploy_env = os.environ.get('DEPLOY_ENV', 'staging') # Default to 'staging' if not set
config = APP_CONF if deploy_env == 'release' else APP2_CONF
config = APP_CONF if deploy_env == 'production' else APP2_CONF

def get_char_to_find(name, split_type):
if split_type == SPLIT_NAME:
Expand Down

0 comments on commit ca2b84c

Please sign in to comment.