remove node_modules and .gitignore them
This commit is contained in:
-24
@@ -1,24 +0,0 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AdaptiveRetryStrategy = void 0;
|
||||
const util_retry_1 = require("@smithy/util-retry");
|
||||
const StandardRetryStrategy_1 = require("./StandardRetryStrategy");
|
||||
class AdaptiveRetryStrategy extends StandardRetryStrategy_1.StandardRetryStrategy {
|
||||
constructor(maxAttemptsProvider, options) {
|
||||
const { rateLimiter, ...superOptions } = options !== null && options !== void 0 ? options : {};
|
||||
super(maxAttemptsProvider, superOptions);
|
||||
this.rateLimiter = rateLimiter !== null && rateLimiter !== void 0 ? rateLimiter : new util_retry_1.DefaultRateLimiter();
|
||||
this.mode = util_retry_1.RETRY_MODES.ADAPTIVE;
|
||||
}
|
||||
async retry(next, args) {
|
||||
return super.retry(next, args, {
|
||||
beforeRequest: async () => {
|
||||
return this.rateLimiter.getSendToken();
|
||||
},
|
||||
afterRequest: (response) => {
|
||||
this.rateLimiter.updateClientSendingRate(response);
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
exports.AdaptiveRetryStrategy = AdaptiveRetryStrategy;
|
||||
Reference in New Issue
Block a user