AUR5007
Error Message
Description
Solution
// ❌ Wrong: Interval too small
client.configure(config => {
return config.withRetry(3, 500, 'exponential'); // 500ms too small
});
// ✅ Correct: Use minimum 1001ms interval
client.configure(config => {
return config.withRetry(3, 2000, 'exponential');
});Last updated
Was this helpful?