Skip to content

Commit aac9aa7

Browse files
Exporting vm.job.enabled global setting on VirtualMachineManager class
1 parent e2b0124 commit aac9aa7

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

engine/orchestration/src/com/cloud/vm/VirtualMachineManagerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4133,7 +4133,7 @@ public String getConfigComponentName() {
41334133
public ConfigKey<?>[] getConfigKeys() {
41344134
return new ConfigKey<?>[] {ClusterDeltaSyncInterval, StartRetry, VmDestroyForcestop, VmOpCancelInterval, VmOpCleanupInterval, VmOpCleanupWait,
41354135
VmOpLockStateRetry,
4136-
VmOpWaitInterval, ExecuteInSequence, VmJobCheckInterval, VmJobTimeout, VmJobStateReportInterval};
4136+
VmOpWaitInterval, ExecuteInSequence, VmJobEnabled, VmJobCheckInterval, VmJobTimeout, VmJobStateReportInterval};
41374137
}
41384138

41394139
public List<StoragePoolAllocator> getStoragePoolAllocators() {

plugins/hypervisors/xen/src/org/apache/cloudstack/hypervisor/xenserver/XenServerResourceNewBase.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,6 @@ public StartupCommand[] initialize() throws IllegalArgumentException {
8484
Host.Record masterRecord = poolr.master.getRecord(conn);
8585
if (_host.uuid.equals(masterRecord.uuid)) {
8686
_listener = new VmEventListener(true);
87-
88-
//
89-
// TODO disable event listener for now. Wait until everything else is ready
90-
//
91-
9287
_listener.start();
9388
} else {
9489
_listener = new VmEventListener(false);

0 commit comments

Comments
 (0)