Browse Source

Fix struct copy missing from 4e89694f

Rod Hynes 6 years ago
parent
commit
227ee75198
1 changed files with 5 additions and 4 deletions
  1. 5 4
      psiphon/tunnel.go

+ 5 - 4
psiphon/tunnel.go

@@ -901,10 +901,11 @@ func dialTunnel(
 	// (and also bypasses throttling).
 
 	return &dialResult{
-			dialConn:      dialConn,
-			monitoredConn: monitoredConn,
-			sshClient:     result.sshClient,
-			sshRequests:   result.sshRequests},
+			dialConn:            dialConn,
+			monitoredConn:       monitoredConn,
+			sshClient:           result.sshClient,
+			sshRequests:         result.sshRequests,
+			livenessTestMetrics: result.livenessTestMetrics},
 		nil
 }