diff --git a/test/images/resource-consumer/VERSION b/test/images/resource-consumer/VERSION index 809bdcb851d..d3456a90f7d 100644 --- a/test/images/resource-consumer/VERSION +++ b/test/images/resource-consumer/VERSION @@ -1 +1 @@ -1.12 +1.13 diff --git a/test/images/resource-consumer/utils_windows.go b/test/images/resource-consumer/utils_windows.go index 4d20542f177..d4a2abe4852 100644 --- a/test/images/resource-consumer/utils_windows.go +++ b/test/images/resource-consumer/utils_windows.go @@ -37,7 +37,7 @@ func ConsumeMem(megabytes int, durationSec int) { megabytesString := strconv.Itoa(megabytes) durationSecString := strconv.Itoa(durationSec) // creating new consume memory process - consumeMem := exec.Command(consumeMemBinary, "-accepteula", "-r", megabytesString, "-e", "0", durationSecString, "-c", "1") + consumeMem := exec.Command(consumeMemBinary, "-accepteula", "-d", megabytesString, "-e", "0", durationSecString, "-c", "1") err := consumeMem.Start() if err != nil { log.Printf("Error while consuming memory: %v", err)