Skip to content

Commit

Permalink
Fix incorrect logic in transport manager.
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Lin committed Jul 31, 2019
1 parent 7b2f582 commit 04ab718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/transport/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func (tm *Manager) reconnectTransports(ctx context.Context) {
continue
}

if !tm.IsSetupPK(remote) {
if tm.IsSetupPK(remote) {
continue
}

Expand Down

0 comments on commit 04ab718

Please sign in to comment.