Skip to content

Commit 5611175

Browse files
authoredMar 6, 2025··
Fix transport service retry logic condition (Fixes #8813) (#8814)
Modify the retry mechanism to stop when remaining tries is less than or equal to zero, improving the robustness of the retry handling. Fixes #8813
1 parent 33acc6e commit 5611175

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
 

‎.changeset/floppy-schools-battle.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@firebase/performance': patch
3+
'firebase': patch
4+
---
5+
6+
Modify the retry mechanism to stop when remaining tries is less than or equal to zero, improving the robustness of the retry handling.

‎packages/performance/src/services/transport_service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export function resetTransportService(): void {
7373
function processQueue(timeOffset: number): void {
7474
setTimeout(() => {
7575
// If there is no remainingTries left, stop retrying.
76-
if (remainingTries === 0) {
76+
if (remainingTries <= 0) {
7777
return;
7878
}
7979

0 commit comments

Comments
 (0)
Please sign in to comment.