A NestJS microservice needs to handle intermittent downstream failures gracefully. Which pattern combined with `@nestjs/axios` best implements retry logic?
-
A
Use RxJS `retry` operator on the HTTP observable
-
B
Wrap calls in a try/catch with a while loop
-
C
Use `setInterval` to poll until success
-
D
Configure `keepAlive` on the HttpModule