Просмотр исходного кода

Skip liveness test (failed) notice when cancelling.

Rod Hynes 7 лет назад
Родитель
Сommit
4a1bb039c7
1 измененных файлов с 5 добавлено и 2 удалено
  1. 5 2
      psiphon/tunnel.go

+ 5 - 2
psiphon/tunnel.go

@@ -801,8 +801,11 @@ func dialTunnel(
 					livenessTestMinDownstreamBytes, livenessTestMaxDownstreamBytes,
 					dialParams.LivenessTestSeed)
 
-				NoticeLivenessTest(
-					dialParams.ServerEntry.IpAddress, metrics, err == nil)
+				// Skip notice when cancelling.
+				if baseCtx.Err() == nil {
+					NoticeLivenessTest(
+						dialParams.ServerEntry.IpAddress, metrics, err == nil)
+				}
 			}
 		}