First Cut of Enhanced Permissions #543

Merged
sarah merged 4 commits from enhanced-permissions into master 2024-01-15 18:04:35 +00:00
1 changed files with 1 additions and 4 deletions
Showing only changes of commit 41b3e20aff - Show all commits

View File

@ -36,15 +36,12 @@ func TestContactRetryQueue(t *testing.T) {
// progress...
setup := false
for !setup {
if pinf, exists := cr.connections.Load(testOnion); exists {
if pinf.(*contact).queued {
if _, exists := cr.connections.Load(testOnion); exists {
if _, exists := cr.authorizedPeers.Load(testOnion); exists {
t.Logf("authorized")
setup = true
}
}
}
time.Sleep(time.Second)
}
// We should very quickly become connecting...