Skip to content

Commit 628efd2

Browse files
committed
Only test with 100 file opens
1 parent afbf2b1 commit 628efd2

File tree

1 file changed

+1
-1
lines changed
  • sample-apps/flask-mysql-uwsgi

1 file changed

+1
-1
lines changed

sample-apps/flask-mysql-uwsgi/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def benchmark():
5050

5151
@app.route("/benchmark_io", methods=['GET'])
5252
def benchmark_io():
53-
for i in range(1000):
53+
for i in range(50):
5454
with open("benchmark_temp.txt", "w") as f:
5555
f.write("This is a benchmark file.")
5656
with open("benchmark_temp.txt", "r") as f:

0 commit comments

Comments
 (0)