We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18494fe commit c557a18Copy full SHA for c557a18
libs/proxy.js
@@ -89,6 +89,7 @@ module.exports = {
89
};
90
91
const maxConcurrencyLimitReached = async (maxConcurrentTasks, token) => {
92
+ if (maxConcurrentTasks === 0) return true;
93
if (!maxConcurrentTasks) return false;
94
95
const userRoutes = await routetable.findByToken(token);
0 commit comments