Skip to content
Snippets Groups Projects
Commit 9d817bcc authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

Modify the round logic -- if it's not found then we print a warning, and we...

Modify the round logic -- if it's not found then we print a warning, and we only return an error when it was found but unloadable for some reason
parent 48e93ea8
No related branches found
No related tags found
2 merge requests!510Release,!282Auth Store Fixes
...@@ -10,6 +10,7 @@ import ( ...@@ -10,6 +10,7 @@ import (
util "gitlab.com/elixxir/client/storage/utility" util "gitlab.com/elixxir/client/storage/utility"
"gitlab.com/elixxir/client/storage/versioned" "gitlab.com/elixxir/client/storage/versioned"
"gitlab.com/elixxir/crypto/contact" "gitlab.com/elixxir/crypto/contact"
"gitlab.com/elixxir/ekv"
"gitlab.com/xx_network/primitives/id" "gitlab.com/xx_network/primitives/id"
) )
...@@ -60,7 +61,7 @@ func newReceivedRequest(kv *versioned.KV, c contact.Contact, ...@@ -60,7 +61,7 @@ func newReceivedRequest(kv *versioned.KV, c contact.Contact,
func loadReceivedRequest(kv *versioned.KV, partner *id.ID) ( func loadReceivedRequest(kv *versioned.KV, partner *id.ID) (
*ReceivedRequest, error) { *ReceivedRequest, error) {
c, contactVersion, err := util.LoadContact(kv, partner) c, err := util.LoadContact(kv, partner)
if err != nil { if err != nil {
return nil, errors.WithMessagef(err, "Failed to Load "+ return nil, errors.WithMessagef(err, "Failed to Load "+
"Received Auth Request Contact with %s", "Received Auth Request Contact with %s",
...@@ -75,16 +76,13 @@ func loadReceivedRequest(kv *versioned.KV, partner *id.ID) ( ...@@ -75,16 +76,13 @@ func loadReceivedRequest(kv *versioned.KV, partner *id.ID) (
partner) partner)
} }
round := rounds.Round{} round, err := rounds.LoadRound(kv, makeRoundKey(partner))
if contactVersion == 0 { if err != nil && ekv.Exists(err) {
jww.WARN.Printf("Old contact version, round to nil") return nil, errors.WithMessagef(err, "Failed to Load "+
} else { "round request was received on with %s",
round, err = rounds.LoadRound(kv, makeRoundKey(partner)) partner)
if err != nil { } else if err != nil && !ekv.Exists(err) {
return nil, errors.WithMessagef(err, "Failed to Load "+ jww.WARN.Printf("No round info for partner %s", partner)
"round request was received on with %s",
partner)
}
} }
return &ReceivedRequest{ return &ReceivedRequest{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment