Skip to content

Commit

Permalink
limit resource stream requests
Browse files Browse the repository at this point in the history
  • Loading branch information
petar-cvit committed Oct 14, 2024
1 parent 1d0b5a0 commit 9eb0f37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cyclops-ui/src/utils/api/sse/resources.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export function resourcesStream(
throw err;
}

if (retryCounter == maxRetries) {
if (retryCounter === maxRetries) {
throw err;
}

Expand Down

0 comments on commit 9eb0f37

Please sign in to comment.