bootstrapServer constant

UDXRetryConfig const bootstrapServer

Default retry config for bootstrap servers (more aggressive)

Implementation

static const UDXRetryConfig bootstrapServer = UDXRetryConfig(
  maxRetries: 5,
  initialDelay: Duration(milliseconds: 50),
  backoffMultiplier: 1.5,
  maxDelay: Duration(seconds: 3),
  enableJitter: true,
);