[appimage] lock wait time reduced

This commit is contained in:
Vinicius Moreira
2019-10-14 21:46:59 -03:00
parent f710fbaaa9
commit 170155d9f6

View File

@@ -9,7 +9,7 @@ def acquire_lock(db_path: str):
open(lock_path, 'a').close()
break
else:
time.sleep(0.0005)
time.sleep(0.0001)
def release_lock(db_path: str):