We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 70d571b + 68abb98 commit 1afb2b7Copy full SHA for 1afb2b7
1 file changed
gunicorn/config.py
@@ -248,7 +248,7 @@ def paste_global_conf(self):
248
for e in raw_global_conf:
249
s = util.bytes_to_str(e)
250
try:
251
- k, v = re.split(r'(?<!\\)=', s, 1)
+ k, v = re.split(r'(?<!\\)=', s, maxsplit=1)
252
except ValueError:
253
raise RuntimeError("environment setting %r invalid" % s)
254
k = k.replace('\\=', '=')
0 commit comments