diff options
author | Monty Taylor <mordred@inaugust.com> | 2019-11-01 08:27:48 +0900 |
---|---|---|
committer | Monty Taylor <mordred@inaugust.com> | 2019-11-01 09:41:12 +0900 |
commit | 1986d263c8bc864ca6d898adcc60a33598535356 (patch) | |
tree | 43cfd6487f1183ccf7be6d95b15270acf270b4ea /zuul/cmd | |
parent | be8d5205395a016d33d252f40a887b482fbf4f4b (diff) | |
download | zuul-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-x | zuul/cmd/__init__.py | 2 |
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: |