Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/floppy-schools-battle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@firebase/performance': patch
'firebase': patch
---

Modify the retry mechanism to stop when remaining tries is less than or equal to zero, improving the robustness of the retry handling.
2 changes: 1 addition & 1 deletion packages/performance/src/services/transport_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export function resetTransportService(): void {
function processQueue(timeOffset: number): void {
setTimeout(() => {
// If there is no remainingTries left, stop retrying.
if (remainingTries === 0) {
if (remainingTries <= 0) {
return;
}

Expand Down
Loading