Fix missing format string PVC namespace

This commit is contained in:
Matthew Wong 2022-07-28 17:57:10 -07:00
parent e5a649d4f6
commit 195797c36c

View File

@ -1201,7 +1201,7 @@ func MultiplePVMountSingleNodeCheck(client clientset.Interface, timeouts *framew
pv2, pvc2, err := e2epv.CreatePVCPV(client, timeouts, pv2Config, pvc2Config, claim.Namespace, true)
framework.ExpectNoError(err, "PVC, PV creation failed")
framework.Logf("Created PVC %s/%s and PV %s in namespace %s", pvc2.Namespace, pvc2.Name, pv2.Name)
framework.Logf("Created PVC %s/%s and PV %s", pvc2.Namespace, pvc2.Name, pv2.Name)
pod2Config := e2epod.Config{
NS: pvc2.Namespace,