removing hardcoded user
This commit is contained in:
parent
90418b204e
commit
f03ee4b836
@ -26,11 +26,12 @@ function rateLimitMiddleware(metadataBackend, endpointGroup = null) {
|
||||
return next();
|
||||
}
|
||||
|
||||
const user = 'cdb';
|
||||
// const user = res.locals.user;
|
||||
if (!endpointGroup) {
|
||||
endpointGroup = getEndpointGroup();
|
||||
}
|
||||
const user = res.locals.user;
|
||||
|
||||
// TODO: remove comments to move it to global
|
||||
// if (!endpointGroup) {
|
||||
// endpointGroup = getEndpointGroup();
|
||||
// }
|
||||
|
||||
if (!endpointGroup || !isRateLimitEnabledByEndpoint(endpointGroup)) {
|
||||
return next();
|
||||
|
@ -12,7 +12,7 @@ const {
|
||||
let redisClient;
|
||||
let testClient;
|
||||
let keysToDelete = ['user:localhost:mapviews:global'];
|
||||
const user = 'cdb';
|
||||
const user = 'localhost';
|
||||
|
||||
const query = `
|
||||
SELECT
|
||||
|
@ -13,7 +13,7 @@ const {
|
||||
|
||||
let redisClient;
|
||||
let rateLimit;
|
||||
const user = 'cdb';
|
||||
const user = 'localhost';
|
||||
let keysToDelete = [];
|
||||
|
||||
function setLimit(count, period, burst) {
|
||||
|
Loading…
Reference in New Issue
Block a user