diff options
-rw-r--r-- | gitautodeploy/cli/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitautodeploy/cli/config.py b/gitautodeploy/cli/config.py index b23135f..e5e68eb 100644 --- a/gitautodeploy/cli/config.py +++ b/gitautodeploy/cli/config.py @@ -21,7 +21,7 @@ def get_config_defaults(): # Include details with deploy command return codes in HTTP response. Causes # to await any git pull or deploy command actions before it sends the # response. - config['detailed-response'] = True + config['detailed-response'] = False # Log incoming webhook requests in a way they can be used as test cases config['log-test-case'] = False @@ -332,4 +332,4 @@ def get_repo_config_from_environment(): if 'GAD_REPO_DEPLOY' in os.environ: repo_config['deploy'] = os.environ['GAD_REPO_DEPLOY'] - return repo_config
\ No newline at end of file + return repo_config |