Skip to content

Commit

Permalink
DATA-2565 - Retry sync for up to a day (#3828)
Browse files Browse the repository at this point in the history
  • Loading branch information
agreenb authored Apr 24, 2024
1 parent c6628b0 commit 8423fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/datamanager/datasync/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var (
InitialWaitTimeMillis = atomic.NewInt32(1000)
// RetryExponentialFactor defines the factor by which the retry wait time increases.
RetryExponentialFactor = atomic.NewInt32(2)
maxRetryInterval = time.Hour
maxRetryInterval = 24 * time.Hour
)

// FailedDir is a subdirectory of the capture directory that holds any files that could not be synced.
Expand Down

0 comments on commit 8423fca

Please sign in to comment.