From 436875f7dccf36ebe73640d93a5d324d715b440d Mon Sep 17 00:00:00 2001 From: Julien Fontanet Date: Tue, 24 May 2016 14:30:26 +0200 Subject: [PATCH] fix(vm.set): memoryMin should not change static min --- src/api/vm.coffee | 1 - 1 file changed, 1 deletion(-) diff --git a/src/api/vm.coffee b/src/api/vm.coffee index e4fd18186..24d8ed562 100644 --- a/src/api/vm.coffee +++ b/src/api/vm.coffee @@ -409,7 +409,6 @@ set = $coroutine (params) -> if 'memoryMin' of params memoryMin = parseSize(params.memoryMin) - yield xapi.call 'VM.set_memory_static_min', ref, "#{memoryMin}" yield xapi.call 'VM.set_memory_dynamic_min', ref, "#{memoryMin}" if 'memoryMax' of params