AUR5005
Error Message
Description
Solution
// ❌ Wrong: Retry interceptor not last
client.configure(config => {
return config
.withRetry(3)
.withInterceptor(loggingInterceptor); // Added after retry
});
// ✅ Correct: Retry interceptor last
client.configure(config => {
return config
.withInterceptor(loggingInterceptor)
.withRetry(3); // Retry interceptor is last
});Last updated
Was this helpful?