Skip to content
Snippets Groups Projects
Commit 56843eb6 authored by juanf's avatar juanf
Browse files

255 can be a recoverable error and is worth to retry to avoid deleting...

255 can be a recoverable error and is worth to retry to avoid deleting .faulty_paths manually: OTRS Ticket ID 40751

SVN: 33620
parent a1080ccc
No related branches found
No related tags found
No related merge requests found
......@@ -123,6 +123,7 @@ final class RsyncExitValueTranslator
case 25:
case 30:
case 125:
case 255:
return StatusFlag.RETRIABLE_ERROR;
default:
return StatusFlag.ERROR;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment