Skip to content

Commit

Permalink
vcore: odf pv creation, cnt verification adjustment (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
elenagerman authored Aug 8, 2024
1 parent 2262fc9 commit 876d786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/system-tests/internal/await/await.go
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ func WaitUntilPersistentVolumeCreated(apiClient *clients.Settings,
return false, nil
}

if len(pvList) != pvCnt {
if len(pvList) <= pvCnt {
glog.V(90).Infof("persistentVolumes count not equal to the expected: %d; found: %d",
pvCnt, len(pvList))

Expand Down

0 comments on commit 876d786

Please sign in to comment.