From cca95ac583ff8eb9c75269bea2e8fe48d865d6b2 Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Mon, 21 Dec 2015 13:34:27 -0500 Subject: [PATCH] add GITLAB_TRIGGER_CONFIG to config.py We were already using this in production in our config.yml. We just didn't have a default value for it inside of config.py. --- config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config.py b/config.py index d3fc2d2b8..06407c7b1 100644 --- a/config.py +++ b/config.py @@ -116,6 +116,9 @@ class DefaultConfig(object): # Bitbucket Config. BITBUCKET_TRIGGER_CONFIG = None + # Gitlab Config. + GITLAB_TRIGGER_CONFIG = None + # Requests based HTTP client with a large request pool HTTPCLIENT = build_requests_session()