Disabling showing "able to receive updates"

This commit is contained in:
Gabor Apati-Nagy 2015-08-20 17:33:34 +01:00
parent 0a3deaf526
commit a12f09beab

View File

@ -1344,7 +1344,7 @@ namespace XenAdmin.TabPages
var gm = vm.Connection.Resolve(vm.guest_metrics);
bool isIoOptimized = gm != null && gm.network_paths_optimized && gm.storage_paths_optimized;
bool isReceivingUpdates = vm.auto_update_drivers;
bool isReceivingUpdates = false && vm.auto_update_drivers; //disabling it temporarily
bool isXenPrepInProgress = false; //TODO in CP-13247 when XenPrep functions will be added
bool canTurnOnAutoUpdates = false && !isReceivingUpdates && !isXenPrepInProgress; //TODO in CP-13247: remove &&false when XenPrep functions have been added