GMXRetryConfig

Documentation for eth_defi.gmx.retry.GMXRetryConfig Python class.

class GMXRetryConfig

Bases: object

Configuration for GMX API retry and failover behaviour.

Controls how aggressively the GMX API client retries failed requests across multiple endpoints. Production defaults are tuned for reliability; tests should use get_test_retry_config() for faster feedback.

Example:

# Production (default)
config = GMXRetryConfig()

# Fast-fail for tests
config = GMXRetryConfig.create_test_config()

Attributes summary

max_retries

Maximum retry attempts per endpoint (primary, backup, fallback, fallback-2)

initial_delay

Initial delay in seconds between retries (grows with backoff)

max_delay

Maximum delay cap in seconds for exponential backoff

backoff_multiplier

Multiplier applied to delay after each failed attempt

full_cycle_retries

Number of full cycles through all endpoints before giving up

Methods summary

__init__([max_retries, initial_delay, ...])

create_test_config()

Create a retry config tuned for fast test feedback.

max_retries: int

Maximum retry attempts per endpoint (primary, backup, fallback, fallback-2)

initial_delay: float

Initial delay in seconds between retries (grows with backoff)

max_delay: float

Maximum delay cap in seconds for exponential backoff

backoff_multiplier: float

Multiplier applied to delay after each failed attempt

full_cycle_retries: int

Number of full cycles through all endpoints before giving up

classmethod create_test_config()

Create a retry config tuned for fast test feedback.

Reduces retries and delays so tests fail quickly instead of burning minutes on unreachable API endpoints.

Return type

eth_defi.gmx.retry.GMXRetryConfig

__init__(max_retries=3, initial_delay=2.0, max_delay=30.0, backoff_multiplier=2.0, full_cycle_retries=2)
Parameters
  • max_retries (int) –

  • initial_delay (float) –

  • max_delay (float) –

  • backoff_multiplier (float) –

  • full_cycle_retries (int) –

Return type

None