mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-12-12 14:37:17 +03:00
Make redis timeout configurable
This commit is contained in:
@@ -134,6 +134,7 @@ addDefaults(config, {
|
||||
},
|
||||
disableOfflineQueue: true,
|
||||
expiryTime: 24 * 60 * 60,
|
||||
getTimeout: 40
|
||||
}
|
||||
});
|
||||
loadFromEnv(config);
|
||||
|
||||
@@ -4,6 +4,7 @@ import * as redis from "redis";
|
||||
interface RedisConfig extends redis.RedisClientOptions {
|
||||
enabled: boolean;
|
||||
expiryTime: number;
|
||||
getTimeout: number;
|
||||
}
|
||||
|
||||
export interface CustomPostgresConfig extends PoolConfig {
|
||||
|
||||
@@ -31,10 +31,9 @@ if (config.redis?.enabled) {
|
||||
client.connect();
|
||||
exportClient = client as RedisSB;
|
||||
|
||||
const timeoutDuration = 40;
|
||||
const get = client.get.bind(client);
|
||||
exportClient.get = (key) => new Promise((resolve, reject) => {
|
||||
const timeout = setTimeout(() => reject(), timeoutDuration);
|
||||
const timeout = setTimeout(() => reject(), config.redis.getTimeout);
|
||||
get(key).then((reply) => {
|
||||
clearTimeout(timeout);
|
||||
resolve(reply);
|
||||
|
||||
Reference in New Issue
Block a user