Skip to content

Commit

Permalink
reduce sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
joofio committed Oct 4, 2024
1 parent 6b90728 commit f7da9b5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions mainv2.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def chek_preprocessor_data(BUNDLES, LENSES, PATIENT_IDS, BASE_URL):
lens=lens,
pid=pid,
)
time.sleep(2)
time.sleep(1)
return 1


Expand Down Expand Up @@ -252,7 +252,7 @@ def chek_lenses_foralreadypreprocess_data(BUNDLES, LENSES, PATIENT_IDS, BASE_URL
lens=lens,
pid=pid,
)
time.sleep(2)
time.sleep(1)

return 1

Expand All @@ -279,7 +279,7 @@ def chek_all_lenses_data(BUNDLES, PATIENT_IDS, BASE_URL):
lens="all",
pid=pid,
)
time.sleep(2)
time.sleep(1)

return 1

Expand All @@ -306,7 +306,7 @@ def chek_all_preprocess_data(BUNDLES, PATIENT_IDS, BASE_URL):
lens="all",
pid=pid,
)
time.sleep(2)
time.sleep(1)

return 1

Expand Down Expand Up @@ -343,7 +343,7 @@ def chek_all_prpcessor_with_post_data(BUNDLES, PATIENT_IDS, BASE_URL):
lens="all",
pid=pid,
)
time.sleep(2)
time.sleep(1)

return 1

Expand Down

0 comments on commit f7da9b5

Please sign in to comment.