Skip to content

Commit

Permalink
Merge pull request #11547 from Nordix/mquhuy/minor-log-fix
Browse files Browse the repository at this point in the history
🐛 Properly display the namespace name in scale test
  • Loading branch information
k8s-ci-robot authored Dec 9, 2024
2 parents 699ecbe + 351ed16 commit 2a7d61d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/scale.go
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ func createClusterWorker(ctx context.Context, clusterProxy framework.ClusterProx
// If every cluster should be deployed in a separate namespace:
// * Deploy ClusterClass in new namespace.
if deployClusterInSeparateNamespaces {
log.Logf("Apply ClusterClass in namespace %", namespaceName)
log.Logf("Apply ClusterClass in namespace %s", namespaceName)
clusterClassYAML := bytes.Replace(customizedClusterClassYAML, []byte(scaleClusterNamespacePlaceholder), []byte(namespaceName), -1)
Eventually(func() error {
return clusterProxy.CreateOrUpdate(ctx, clusterClassYAML)
Expand Down

0 comments on commit 2a7d61d

Please sign in to comment.