projects
/
fastapi-vs-flask
/
.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b7e52a8
)
fastAPI complete
author
Sam Mirazi
<sasan345@gmail.com>
Sun, 1 Jun 2025 17:25:13 +0000
(10:25 -0700)
committer
Sam Mirazi
<sasan345@gmail.com>
Sun, 1 Jun 2025 17:25:13 +0000
(10:25 -0700)
benchmark/run_benchmark.py
patch
|
blob
|
history
diff --git
a/benchmark/run_benchmark.py
b/benchmark/run_benchmark.py
index ba5d4af59e829c824d21e1130d186b233b489b00..3d199817b52c30ff19e3def7ab326a678e437fb4 100644
(file)
--- a/
benchmark/run_benchmark.py
+++ b/
benchmark/run_benchmark.py
@@
-36,7
+36,7
@@
def run_flask_benchmark():
async def fetch_url_async(client, url):
try:
- response = await client.get(url
, timeout=10) # Increased timeout
+ response = await client.get(url
) # REMOVED timeout=10
response.raise_for_status()
return response.status_code
except httpx.RequestError as e: