Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -282,9 +282,9 @@ public class AzureNativeFileSystemStore implements NativeFileSystemStore {
// Retry parameter defaults.
//

private static final int DEFAULT_MIN_BACKOFF_INTERVAL = 3 * 1000; // 1s
private static final int DEFAULT_MIN_BACKOFF_INTERVAL = 3 * 1000; // 3s
private static final int DEFAULT_MAX_BACKOFF_INTERVAL = 30 * 1000; // 30s
private static final int DEFAULT_BACKOFF_INTERVAL = 3 * 1000; // 1s
private static final int DEFAULT_BACKOFF_INTERVAL = 3 * 1000; // 3s
private static final int DEFAULT_MAX_RETRY_ATTEMPTS = 30;

private static final int DEFAULT_COPYBLOB_MIN_BACKOFF_INTERVAL = 3 * 1000;
Expand Down