mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
18 lines
286 B
Python
18 lines
286 B
Python
req1 = {
|
|
"method": "GET",
|
|
"uri": uri("/first"),
|
|
"version": (1, 0),
|
|
"headers": [("CONNECTION", "Keep-Alive")],
|
|
"body": b""
|
|
}
|
|
|
|
req2 = {
|
|
"method": "GET",
|
|
"uri": uri("/second"),
|
|
"version": (1, 1),
|
|
"headers": [],
|
|
"body": b""
|
|
}
|
|
|
|
request = [req1, req2]
|