Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor(amqpUrl, managementEndpoint) {
this.amqpUrl = amqpUrl;
this.managementEndpoint = managementEndpoint;
this.client = null;
const retryOperations = new serviceBus.ExponentialRetryPolicyFilter();
this.serviceBusService = serviceBus.createServiceBusService(managementEndpoint).withFilter(retryOperations);
}