This commit is contained in:
Miroslav Stampar
2024-06-28 23:28:26 +02:00
parent 3192da0acd
commit 79f4cfb0a7
3 changed files with 6 additions and 6 deletions

View File

@@ -5408,9 +5408,9 @@ def parseRequestFile(reqFile, checkParams=True):
port = extractRegexResult(r":(?P<result>\d+)\Z", value)
if port:
value = value[:-(1 + len(port))]
host = value
host = value[:-(1 + len(port))]
else:
host = value
# Avoid to add a static content length header to
# headers and consider the following lines as