Skip to content

Commit

Permalink
Revert "Reduce blobs lookup min wait time to 0 (#8864)"
Browse files Browse the repository at this point in the history
This reverts commit 809ea98.
  • Loading branch information
tbenr committed Dec 11, 2024
1 parent d633566 commit 5f28824
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public class BlockBlobSidecarsTrackersPoolImpl extends AbstractIgnoringFutureHis
static final String GAUGE_BLOB_SIDECARS_TRACKERS_LABEL = "blob_sidecars_trackers";

static final UInt64 MAX_WAIT_RELATIVE_TO_ATT_DUE_MILLIS = UInt64.valueOf(1500);
static final UInt64 MIN_WAIT_MILLIS = UInt64.ZERO;
static final UInt64 MIN_WAIT_MILLIS = UInt64.valueOf(500);
static final UInt64 TARGET_WAIT_MILLIS = UInt64.valueOf(1000);

private final SettableLabelledGauge sizeGauge;
Expand Down

0 comments on commit 5f28824

Please sign in to comment.