Skip to content

Commit

Permalink
Merge pull request #276 from Gauravjeetsingh/timeout-error
Browse files Browse the repository at this point in the history
Fix the timeout error in search-results endpoint.
  • Loading branch information
mandeepryaz authored Jul 21, 2023
2 parents de7317b + 8efa01d commit a18e181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/routes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ route.get('/health', limiter.rate250, healthcheck.db);
// Shabad Routes
route.get('/search/:query', limiter.rate250, shabads.search);

route.get('/search-results/:VerseID', limiter.rate250, shabads.resultsInfo);
route.get('/search-results/:VerseIds', limiter.rate250, shabads.resultsInfo);

route.get('/shabads/:ShabadID', limiter.rate100, shabads.shabads);

Expand Down

0 comments on commit a18e181

Please sign in to comment.