AUR5008
Error Message
Description
Solution
// ❌ Wrong: Invalid strategy
client.configure(config => {
return config.withRetry(3, 1000, 'invalid'); // Unsupported strategy
});
// ✅ Correct: Use supported strategies
client.configure(config => {
return config.withRetry(3, 1000, 'linear');
// or
// return config.withRetry(3, 2000, 'exponential');
});Last updated
Was this helpful?