diff --git a/automated-orders/packages/blockchain-library/src/processors/newSignatureProcessor.ts b/automated-orders/packages/blockchain-library/src/processors/newSignatureProcessor.ts index a55cf655d..494395448 100644 --- a/automated-orders/packages/blockchain-library/src/processors/newSignatureProcessor.ts +++ b/automated-orders/packages/blockchain-library/src/processors/newSignatureProcessor.ts @@ -17,13 +17,8 @@ export class NewSignatureProcessor extends Processor { super(generator); const retryPolicy = retry(handleAll, { maxAttempts: 3, backoff: new ExponentialBackoff() }); - - const circuitBreakerPolicy = circuitBreaker(handleAll, { - halfOpenAfter: 10 * 1000, - breaker: new ConsecutiveBreaker(5), - }); - - this.retryPolicy = wrap(retryPolicy, circuitBreakerPolicy); + // TODO AT: Add circuit breaker + this.retryPolicy = retryPolicy; } async handle(data: INewSignatureRequest): Promise {