summaryrefslogtreecommitdiffstats
path: root/gitautodeploy
diff options
context:
space:
mode:
authorOliver Poignant <oliver@poignant.se>2016-11-14 22:37:28 +0100
committerGitHub <noreply@github.com>2016-11-14 22:37:28 +0100
commit749ce13ae6e9cecf69997d36228f2cab9a2eb8ec (patch)
tree2e2cd7d6b1ddcbe84e8e4816af4170b73b4242ee /gitautodeploy
parente9ef0f56dc9e5f90a962a742dc7a215932c11b8e (diff)
parent7ed290d2b88685855ed86943fcae0469a231dced (diff)
downloadGit-Auto-Deploy-749ce13ae6e9cecf69997d36228f2cab9a2eb8ec.zip
Git-Auto-Deploy-749ce13ae6e9cecf69997d36228f2cab9a2eb8ec.tar.gz
Git-Auto-Deploy-749ce13ae6e9cecf69997d36228f2cab9a2eb8ec.tar.bz2
Merge pull request #136 from realsby/patch-1
Default value detailed-response should be False
Diffstat (limited to 'gitautodeploy')
-rw-r--r--gitautodeploy/cli/config.py4
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