Skip to content
Snippets Groups Projects
Commit a17ec762 authored by Jake Taylor's avatar Jake Taylor
Browse files

fix spelling issues

parent 3ee8923e
No related branches found
No related tags found
1 merge request!23Release
...@@ -137,7 +137,7 @@ func negotiate(instance *network.Instance, sendE2E interfaces.SendE2E, ...@@ -137,7 +137,7 @@ func negotiate(instance *network.Instance, sendE2E interfaces.SendE2E,
// otherwise, the transmission is a success and this should be denoted // otherwise, the transmission is a success and this should be denoted
// in the session and the log // in the session and the log
jww.INFO.Printf("Key Negotiation transmission for %s sucesful", jww.INFO.Printf("Key Negotiation transmission for %s successful",
session) session)
session.SetNegotiationStatus(e2e.Sent) session.SetNegotiationStatus(e2e.Sent)
......
...@@ -153,7 +153,7 @@ func handleTrigger(sess *storage.Session, net interfaces.NetworkManager, ...@@ -153,7 +153,7 @@ func handleTrigger(sess *storage.Session, net interfaces.NetworkManager,
// otherwise, the transmission is a success and this should be denoted // otherwise, the transmission is a success and this should be denoted
// in the session and the log // in the session and the log
sess.GetCriticalMessages().Succeeded(m) sess.GetCriticalMessages().Succeeded(m)
jww.INFO.Printf("Key Negotiation transmission for %s sucesfull", jww.INFO.Printf("Key Negotiation transmission for %s successfully",
session) session)
return nil return nil
......
...@@ -80,7 +80,7 @@ func (m *Manager) criticalMessages() { ...@@ -80,7 +80,7 @@ func (m *Manager) criticalMessages() {
return return
} }
jww.INFO.Printf("Sucesfull resend of critical message "+ jww.INFO.Printf("Successful resend of critical message "+
"to %s on rounds %d", msg.Recipient, rounds) "to %s on rounds %d", msg.Recipient, rounds)
critMsgs.Succeeded(msg) critMsgs.Succeeded(msg)
}(msg, param) }(msg, param)
...@@ -128,7 +128,7 @@ func (m *Manager) criticalMessages() { ...@@ -128,7 +128,7 @@ func (m *Manager) criticalMessages() {
return return
} }
jww.INFO.Printf("Sucesfull resend of critical raw message "+ jww.INFO.Printf("Successful resend of critical raw message "+
"to %s (msgDigest: %s) on round %d", rid, msg.Digest(), round) "to %s (msgDigest: %s) on round %d", rid, msg.Digest(), round)
critRawMsgs.Succeeded(msg, rid) critRawMsgs.Succeeded(msg, rid)
......
...@@ -114,7 +114,7 @@ func (m *Manager) SendE2E(msg message.Send, param params.E2E) ([]id.Round, e2e.M ...@@ -114,7 +114,7 @@ func (m *Manager) SendE2E(msg message.Send, param params.E2E) ([]id.Round, e2e.M
return nil, e2e.MessageID{}, errors.Errorf("Failed to E2E send %v/%v sub payloads:"+ return nil, e2e.MessageID{}, errors.Errorf("Failed to E2E send %v/%v sub payloads:"+
" %s", numFail, len(partitions), errRtn) " %s", numFail, len(partitions), errRtn)
} else { } else {
jww.INFO.Printf("Sucesfully E2E sent %d/%d to %s", jww.INFO.Printf("Successfully E2E sent %d/%d to %s",
len(partitions)-numFail, len(partitions), msg.Recipient) len(partitions)-numFail, len(partitions), msg.Recipient)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment