blob: 17f206c7b94334266c316998f3522f5e8c4ae585 (
plain) (
blame)
1
2
3
4
5
6
7
|
export const ACTIVE_POLL_INTERVAL = 3e3
export const BACKGROUND_POLL_INTERVAL = 60e3
export const INACTIVE_TIMEOUT = 60e3 * 5
export const NETWORK_FAILURE_STATUSES = [
1, 408, 425, 429, 500, 502, 503, 504, 522, 524,
]
|