summaryrefslogtreecommitdiff
path: root/zuul/cmd
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2019-11-01 08:27:48 +0900
committerMonty Taylor <mordred@inaugust.com>2019-11-01 09:41:12 +0900
commit1986d263c8bc864ca6d898adcc60a33598535356 (patch)
tree43cfd6487f1183ccf7be6d95b15270acf270b4ea /zuul/cmd
parentbe8d5205395a016d33d252f40a887b482fbf4f4b (diff)
downloadzuul-1986d263c8bc864ca6d898adcc60a33598535356.tar.gz
Revert "Add the process environment to zuul.conf parser"
In prod for OpenDev we're seeing things like this: http://paste.openstack.org/show/785704/ which lead us to believe this is somehow connected. This reverts commit f2229705f303ad71d37e98323e3f43031e4e0197. Change-Id: I0b73b71f72483e6c6e511411c3c59729761cec9b
Diffstat (limited to 'zuul/cmd')
-rwxr-xr-xzuul/cmd/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/zuul/cmd/__init__.py b/zuul/cmd/__init__.py
index 8ceafa6f2..0c2204e4f 100755
--- a/zuul/cmd/__init__.py
+++ b/zuul/cmd/__init__.py
@@ -123,7 +123,7 @@ class ZuulApp(object):
return parser
def readConfig(self):
- self.config = configparser.ConfigParser(os.environ)
+ self.config = configparser.ConfigParser()
if self.args.config:
locations = [self.args.config]
else: