ソースを参照

Skip liveness test (failed) notice when cancelling.

Rod Hynes 7 年 前
コミット
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)
+				}
 			}
 		}