// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
use Duration;
/// Default maximum hedged attempts: 1.
///
/// One additional hedged attempt beyond the original request, resulting in 2 total
/// concurrent attempts. This provides basic hedging benefits while
/// limiting resource overhead.
pub const DEFAULT_MAX_HEDGED_ATTEMPTS: u8 = 1;
/// Default delay between launching hedged requests: 500 milliseconds.
pub const DEFAULT_HEDGING_DELAY: Duration = from_millis;