This commit is contained in:
Raven Scott
2025-12-20 15:41:48 -05:00
parent 0dbdcdd641
commit 6128abe902
3 changed files with 157 additions and 29 deletions
+3 -1
View File
@@ -92,5 +92,7 @@ module.exports = {
lastReconnectionAttempt: new Map(), // Map<peerId, timestamp>
// Invite diagnostics tracking
consecutiveInviteFailures: 0,
networkConsensusTimer: null
networkConsensusTimer: null,
// Pending invite requests queue for when master isn't ready
pendingInviteRequests: new Map() // Map<peerId, {timestamp, retryCount}>
};