summaryrefslogtreecommitdiff
path: root/zuul/driver/github/githubreporter.py
diff options
context:
space:
mode:
authorTobias Henkel <tobias.henkel@bmw.de>2018-01-23 12:17:27 +0100
committerTobias Henkel <tobias.henkel@bmw.de>2018-01-29 14:16:28 +0100
commit940da00e9be66e6387f5e3864804499fe8547e21 (patch)
tree8e9a63643045b7ef767dda4c5c95a403466a6330 /zuul/driver/github/githubreporter.py
parent80730e6c79719cddcdd500d17dac3db3af1b9554 (diff)
downloadzuul-940da00e9be66e6387f5e3864804499fe8547e21.tar.gz
Move status_url from webapp to web section
The webapp will be fully replaced by zuul-web so also move the status_url setting there. Change-Id: I8278d9ca81ed7b0a2a2189d42b8b69c5eea2bab5
Diffstat (limited to 'zuul/driver/github/githubreporter.py')
-rw-r--r--zuul/driver/github/githubreporter.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/zuul/driver/github/githubreporter.py b/zuul/driver/github/githubreporter.py
index 848ae1b3a..57b594b1f 100644
--- a/zuul/driver/github/githubreporter.py
+++ b/zuul/driver/github/githubreporter.py
@@ -105,8 +105,8 @@ class GithubReporter(BaseReporter):
url_pattern = self.config.get('status-url')
if not url_pattern:
sched_config = self.connection.sched.config
- if sched_config.has_option('webapp', 'status_url'):
- url_pattern = sched_config.get('webapp', 'status_url')
+ if sched_config.has_option('web', 'status_url'):
+ url_pattern = sched_config.get('web', 'status_url')
url = item.formatUrlPattern(url_pattern) if url_pattern else ''
description = '%s status: %s' % (item.pipeline.name,