Skip to content

Commit

Permalink
including change added to devel
Browse files Browse the repository at this point in the history
  • Loading branch information
myleshorton committed May 12, 2016
1 parent 06baf8e commit 9d5aff6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/github.com/getlantern/balancer/dialer.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@ func (d *dialer) Start() {
}
return
case <-d.checkTimer.C:
// We suspect that the check process may be causing users to get blacklisted.
// At the moment, it's not strictly necessary and won't be until we do
// multiple servers with pro, so let's skip it for now.
// TODO: reenable for Pro if necessary
if true {
continue
}
log.Tracef("Start checking dialer %s", d.Label)
ok := d.Check()
if ok {
Expand Down

0 comments on commit 9d5aff6

Please sign in to comment.