Skip to content

Commit b9bb616

Browse files
committed
parameter fix
1 parent 6c0c620 commit b9bb616

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

concurrent_test/D8gerRich.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ def execute_download():
7474
# just log
7575
log.warning("you didn't set any parameters!")
7676
if loop > 64:
77-
workers = 64
78-
if workers < 0:
79-
workers = 10
77+
loop = 64
78+
if loop < 0:
79+
loop = 10
8080
if workers > 8:
8181
workers = 8
8282
if workers < 0:

0 commit comments

Comments
 (0)