FEAT: added exception for rsync error 24

master 3.7.2.1
idziubenko 2 years ago
parent b229afbad8
commit 2ffc59f626

@ -83,6 +83,8 @@ class ProfileSyncer():
else:
self.output = self.process.before
self.process.close()
self.exitstatus = self.process.exitstatus
existatus = self.process.exitstatus
#error 24 - "files vanished" is not fatal
self.exitstatus = existatus if existatus != 24 else 0
yield 100
break

Loading…
Cancel
Save