Skip to content

Commit c974c12

Browse files
authoredFeb 18, 2025··
[signal] Fix registry not found (#3342)
1 parent 50926bd commit c974c12

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎signal/server/signal.go

+1
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ func (s *Server) forwardMessageToPeer(ctx context.Context, msg *proto.EncryptedM
160160
s.metrics.MessageForwardFailures.Add(ctx, 1, metric.WithAttributes(attribute.String(labelType, labelTypeNotConnected)))
161161
log.Debugf("message from peer [%s] can't be forwarded to peer [%s] because destination peer is not connected", msg.Key, msg.RemoteKey)
162162
// todo respond to the sender?
163+
return
163164
}
164165

165166
s.metrics.GetRegistrationDelay.Record(ctx, float64(time.Since(getRegistrationStart).Nanoseconds())/1e6, metric.WithAttributes(attribute.String(labelType, labelTypeStream), attribute.String(labelRegistrationStatus, labelRegistrationFound)))

0 commit comments

Comments
 (0)
Please sign in to comment.