Fix 02403_big_http_chunk_size test

This commit is contained in:
Vitaly Baranov 2022-10-01 18:21:39 +02:00 committed by GitHub
parent b9e8ae2fd9
commit 252d6c5ec2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ def main():
sock = socket(AF_INET, SOCK_STREAM) sock = socket(AF_INET, SOCK_STREAM)
sock.connect((host, port)) sock.connect((host, port))
sock.settimeout(5) sock.settimeout(60)
s = "POST /play HTTP/1.1\r\n" s = "POST /play HTTP/1.1\r\n"
s += "Host: %s\r\n" % host s += "Host: %s\r\n" % host
s += "Content-type: multipart/form-data\r\n" s += "Content-type: multipart/form-data\r\n"