(retries uint, operation *models.Operation)
| 122 | } |
| 123 | |
| 124 | func canRetry(retries uint, operation *models.Operation) bool { |
| 125 | return retries > 0 && operation.ErrorType != models.ErrorTypeCONTENT |
| 126 | } |
| 127 | |
| 128 | func executeRetryAction(executionMonitor *ExecutionMonitor) { |
| 129 | retryAction := newAction("retry", VerbosityLevelSILENT) |