File tree 3 files changed +8
-5
lines changed
site/content/en/docs/contrib
3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -87,9 +87,10 @@ func (r *persistentRegistry) Register(tunnel *ID) (rerr error) {
87
87
88
88
alreadyExists := false
89
89
for i , t := range tunnels {
90
- // it is allowed for multiple minikube clusters to have multiple tunnels simultaneously
91
- // it is possible that an old tunnel from an old profile has duplicated route information
92
- // so we need to check both machine name and route information
90
+ // It is allowed for multiple minikube clusters to have multiple
91
+ // tunnels simultaneously. It is possible that an old tunnel
92
+ // from an old profile has duplicated route information so we
93
+ // need to check both machine name and route information.
93
94
if tunnel .MachineName == t .MachineName && t .Route .Equal (tunnel .Route ) {
94
95
isRunning , err := checkIfRunning (t .Pid )
95
96
if err != nil {
Original file line number Diff line number Diff line change @@ -115,7 +115,8 @@ asserts that there are no unexpected errors displayed in minikube command output
115
115
are functionality tests which can safely share a profile in parallel
116
116
117
117
## TestFunctionalNewestKubernetes
118
- are functionality run functional tests using NewestKubernetesVersion
118
+ are functionality run functional tests using
119
+ NewestKubernetesVersion
119
120
120
121
#### validateNodeLabels
121
122
checks if minikube cluster is created with correct kubernetes's node label
Original file line number Diff line number Diff line change @@ -77,7 +77,8 @@ func TestFunctional(t *testing.T) {
77
77
testFunctional (t , "" )
78
78
}
79
79
80
- // TestFunctionalNewestKubernetes are functionality run functional tests using NewestKubernetesVersion
80
+ // TestFunctionalNewestKubernetes are functionality run functional tests using
81
+ // NewestKubernetesVersion
81
82
func TestFunctionalNewestKubernetes (t * testing.T ) {
82
83
if strings .Contains (* startArgs , "--kubernetes-version" ) || constants .NewestKubernetesVersion == constants .DefaultKubernetesVersion {
83
84
t .Skip ()
You can’t perform that action at this time.
0 commit comments