Skip to content

Commit

Permalink
Merge pull request #126 from narkarum/message-updates
Browse files Browse the repository at this point in the history
Update util.go
  • Loading branch information
narkarum authored Aug 13, 2019
2 parents 0183897 + 3145dd5 commit 88bbd70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion volume-providers/vpc/provider/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func retry(logger *zap.Logger, retryfunc func() error) error {
}
}
if (i + 1) < maxRetryAttempt {
logger.Info("Error while executing the function. Re-attempting execution ..", zap.Int("attempt..", i+2), zap.Int("retry-gap", retryGap), zap.Int("max-retry-Attempts", maxRetryGap), zap.Error(err))
logger.Info("Error while executing the function. Re-attempting execution ..", zap.Int("attempt..", i+2), zap.Int("retry-gap", retryGap), zap.Int("max-retry-Attempts", maxRetryAttempt), zap.Error(err))
}
continue
}
Expand Down

0 comments on commit 88bbd70

Please sign in to comment.