adjusted session manager for max API calls in any period For now will reply to every comment given enoug time even if severely rate limited
parent
eff594379a
commit
e04d63a9bb
|
@ -26,7 +26,13 @@ class SessionManager {
|
|||
enableOfflineQueue: true
|
||||
},
|
||||
maxConcurrent: 1, // Maximum number of concurrent requests
|
||||
minTime: 1000 // Minimum time between dispatches of requests in milliseconds
|
||||
minTime: 1000, // Minimum time between dispatches of requests in milliseconds
|
||||
reservoir: 41, // Initial reservoir value for the first hour
|
||||
reservoirRefreshAmount: 41, // Reservoir value to reset to every hour
|
||||
reservoirRefreshInterval: 60 * 60 * 1000, // Interval to reset the reservoir (1 hour in milliseconds)
|
||||
//For now will reply to every comment given enoug time even if severely rate limited
|
||||
//highWater: 5, // Maximum number of queued jobs.
|
||||
//strategy: Bottleneck.strategy.OVERFLOW_PRIORITY // Strategy to drop the oldest jobs in the queue when highWater is reached
|
||||
});
|
||||
|
||||
this.axiosInstance = axios.create({
|
||||
|
@ -82,13 +88,13 @@ class SessionManager {
|
|||
// Wrap the post method
|
||||
const originalPost = instance.post;
|
||||
instance.post = <T = any, R = AxiosResponse<T>>(url: string, data?: any, config?: AxiosRequestConfig): Promise<R> => {
|
||||
return this.limiter.schedule(() => originalPost.apply(instance, [url, data, config])) as Promise<R>;
|
||||
return this.limiter.schedule({ priority: 1 }, () => originalPost.apply(instance, [url, data, config])) as Promise<R>;
|
||||
};
|
||||
|
||||
// Wrap the put method
|
||||
const originalPut = instance.put;
|
||||
instance.put = <T = any, R = AxiosResponse<T>>(url: string, data?: any, config?: AxiosRequestConfig): Promise<R> => {
|
||||
return this.limiter.schedule(() => originalPut.apply(instance, [url, data, config])) as Promise<R>;
|
||||
return this.limiter.schedule({ priority: 1 }, () => originalPut.apply(instance, [url, data, config])) as Promise<R>;
|
||||
};
|
||||
|
||||
// Wrap the delete method
|
||||
|
|
Loading…
Reference in New Issue