We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eab9094 commit 1499c79Copy full SHA for 1499c79
1 file changed
workers/limiter/src/index.ts
@@ -205,7 +205,7 @@ export default class LimiterWorker extends Worker {
205
/**
206
* If workspace is not blocked yet and it should be blocked by quota - then block it
207
*/
208
- if (!workspace.isBlocked && shouldBeBlockedByQuota) {
+ if (shouldBeBlockedByQuota) {
209
const projectIds = projectsToUpdate.map(project => project._id.toString());
210
211
this.redis.appendBannedProjects(projectIds);
0 commit comments