Skip to content
Snippets Groups Projects
Commit e66d3282 authored by Martin Stiemerling's avatar Martin Stiemerling :speech_balloon: Committed by Malte Bauch
Browse files

log.fatal was wrong here

parent dadd26bd
No related branches found
No related tags found
1 merge request!1Move proto kms into ekms
......@@ -165,7 +165,8 @@ func (kms *EKMS) GenerateNewQleID() (uint32, error) {
func (kms *EKMS) AddPeer(kmsPeerSocket string, servingQLE *QuantumElement) {
//check if peer exists
if _, there := kms.KmsPeers[kmsPeerSocket]; there {
log.Fatalf("Trying to add existing peer %s", kmsPeerSocket)
log.Printf("Trying to add existing peer %s", kmsPeerSocket)
return
}
peer := NewKmsPeer(servingQLE, kms.externalNotifierKMSPeer)
peer.tcpSocketStr = kmsPeerSocket
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment