Skip to content

Commit 365c431

Browse files
committed
fix: small fix to prevent duplicate forwardAuthenticate attempts
[ci skip]
1 parent 63ddd5c commit 365c431

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/nodes/NodeConnectionManager.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1735,7 +1735,9 @@ class NodeConnectionManager {
17351735
// If it exists in the map then we don't need to start one and can just return
17361736
if (existingAuthenticate != null) return;
17371737
if (
1738-
authenticationEntry.authenticatedForward !== AuthenticatingState.PENDING
1738+
authenticationEntry.authenticatedForward !==
1739+
AuthenticatingState.PENDING ||
1740+
authenticationEntry.authenticateComplete
17391741
) {
17401742
return;
17411743
}

0 commit comments

Comments
 (0)