Format
continuous-integration/drone/pr Build is pending Details

This commit is contained in:
Sarah Jamie Lewis 2023-08-28 13:35:54 -07:00
parent 048effc91a
commit fb164b104b
2 changed files with 5 additions and 5 deletions

View File

@ -259,7 +259,7 @@ func (cr *contactRetry) run() {
cr.addConnection(server, connections.DISCONNECTED, serverConn, lastSeen)
}
// this was an authorized event, and so we store this peer.
log.Debugf("authorizing id: %v", id);
log.Debugf("authorizing id: %v", id)
cr.authorizedPeers.Store(id, true)
if c, ok := cr.connections.Load(id); ok {
contact := c.(*contact)

View File

@ -36,10 +36,10 @@ func TestContactRetryQueue(t *testing.T) {
for {
if pinf, exists := cr.connections.Load(testOnion); exists {
if pinf.(*contact).queued {
if _,exists := cr.authorizedPeers.Load(testOnion); exists {
t.Logf("authorized");
break;
}
if _, exists := cr.authorizedPeers.Load(testOnion); exists {
t.Logf("authorized")
break
}
}
}
}