1
0
Fork 0
mirror of synced 2024-06-21 11:51:00 +12:00

Adding check to disable rate limit redis connection in test.

This commit is contained in:
mike12345567 2022-03-02 12:50:10 +00:00
parent a8a8498a9c
commit 32e7f27dfa

View file

@ -22,17 +22,19 @@ const { getRedisOptions } = require("@budibase/backend-core/redis").utils
const PREFIX = "/api/public/v1"
const DEFAULT_API_LIMITING = 120
const REDIS_OPTS = getRedisOptions()
RateLimit.defaultOptions({
store: new Stores.Redis({
socket: {
host: REDIS_OPTS.host,
port: REDIS_OPTS.port,
},
password: REDIS_OPTS.opts.password,
database: 1,
}),
})
if (!env.isTest()) {
const REDIS_OPTS = getRedisOptions()
RateLimit.defaultOptions({
store: new Stores.Redis({
socket: {
host: REDIS_OPTS.host,
port: REDIS_OPTS.port,
},
password: REDIS_OPTS.opts.password,
database: 1,
}),
})
}
// rate limiting, allows for 2 requests per second
const limiter = RateLimit.middleware({
interval: { min: 1 },