mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-02 16:53:11 +00:00
Fix constants to use environment variables in preference to config files
This commit is contained in:
@@ -124,10 +124,6 @@ def get_config(p, section, key, env_var, default, value_type=None, expand_relati
|
||||
def _get_config(p, section, key, env_var, default):
|
||||
''' helper function for get_config '''
|
||||
value = default
|
||||
if env_var is not None:
|
||||
env_value = os.environ.get(env_var, None)
|
||||
if env_value is not None:
|
||||
value = env_value
|
||||
|
||||
if p is not None:
|
||||
try:
|
||||
@@ -135,6 +131,11 @@ def _get_config(p, section, key, env_var, default):
|
||||
except:
|
||||
pass
|
||||
|
||||
if env_var is not None:
|
||||
env_value = os.environ.get(env_var, None)
|
||||
if env_value is not None:
|
||||
value = env_value
|
||||
|
||||
return to_text(value, errors='surrogate_or_strict', nonstring='passthru')
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user