added check for file being uploaded at the moment

This commit is contained in:
Christian 2021-02-04 00:30:43 +01:00
parent 4aaa734d65
commit f851d15964

View File

@ -94,9 +94,13 @@ class sftp_remote:
local_sha256 = self.digest(local_temp_folder)
os.remove(local_temp_folder)
#print('removing: ', local_temp_folder)
if local_sha256 == sha256:
if local_sha256 == sha256:
#print('sha confirmed')
return True
time.sleep(2)
sha256_local_upload_check = self.digest(local_path)
if sha256 != sha256_local_upload_check:
return False #file is currently being uploaded
except SSHException as e:
print(e)
self.remote_error = e