Skip to content
Snippets Groups Projects
Unverified Commit be51aac2 authored by xgui3783's avatar xgui3783 Committed by GitHub
Browse files

Merge pull request #806 from HumanBrainProject/bugfix_saneUrlRateLimiting

bugfix: remove rate limiting for get req
parents 76bc8b98 4ff1fd6c
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ const getFile = async name => {
return value
}
router.get('/:name', DISABLE_LIMITER ? passthrough : limiter, async (req, res) => {
router.get('/:name', async (req, res) => {
const { name } = req.params
const { headers } = req
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment