1
0
Fork 0
mirror of https://github.com/dbarzin/pandora-box.git synced 2025-07-30 18:59:42 +02:00

adjust timers

This commit is contained in:
dbarzin 2023-03-03 13:30:13 +01:00
parent 75a789b96e
commit a5b124c010

View file

@ -416,7 +416,7 @@ class PandoraBox:
file_scan_start_time = time.time() file_scan_start_time = time.time()
if self.is_fake_scan: if self.is_fake_scan:
time.sleep(0.1) time.sleep(0.01)
status = "SKIPPED" status = "SKIPPED"
else: else:
# do not scan files bigger than 1G # do not scan files bigger than 1G
@ -424,21 +424,23 @@ class PandoraBox:
status = "TOO BIG" status = "TOO BIG"
else: else:
res = pandora.submit_from_disk(full_path) res = pandora.submit_from_disk(full_path)
time.sleep(0.1) time.sleep(0.01)
loop = 0 loop = 0
while loop < 960: while loop < (1024 * 256):
res = pandora.task_status(res["taskId"]) res = pandora.task_status(res["taskId"])
status = res["status"] status = res["status"]
if status != "WAITING": if status != "WAITING":
break break
time.sleep(0.5)
# wait a little
time.sleep(0.01)
# update status # update status
self._log_msg( self._log_msg(
f'Scan {file} ' f'Scan {file} '
f'[{self._human_readable_size(file_size)}] ' f'[{self._human_readable_size(file_size)}] '
"." * (loop // 4)) "." * (int(time.time() - file_scan_start_time) // 4))
loop += 1 loop += 1
file_scan_end_time = time.time() file_scan_end_time = time.time()