mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-20 01:01:22 +00:00
Merge pull request #46974 from liggitt/cert-filename
Automatic merge from submit-queue (batch tested with PRs 46112, 46764, 46727, 46974, 46968) Avoid * in filenames Fixes #46958
This commit is contained in:
commit
f01fd32301
@ -395,7 +395,8 @@ func TestServerRunWithSNI(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
specToName := func(spec TestCertSpec) string {
|
specToName := func(spec TestCertSpec) string {
|
||||||
return spec.host + "_" + strings.Join(spec.names, ",") + "_" + strings.Join(spec.ips, ",")
|
name := spec.host + "_" + strings.Join(spec.names, ",") + "_" + strings.Join(spec.ips, ",")
|
||||||
|
return strings.Replace(name, "*", "star", -1)
|
||||||
}
|
}
|
||||||
|
|
||||||
NextTest:
|
NextTest:
|
||||||
|
Loading…
Reference in New Issue
Block a user