nvazquez commented on code in PR #6399:
URL: https://github.com/apache/cloudstack/pull/6399#discussion_r879324012
##########
plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/LibvirtComputingResource.java:
##########
@@ -1132,6 +1134,11 @@ public boolean configure(final String name, final
Map<String, Object> params) th
s_logger.trace("Ignoring libvirt error.", e);
}
+ // Enable/disable IO driver for Qemu (in case it is not set CloudStack
can also detect if its supported by qemu)
+ // Do not remove - switching it to AgentProperties.Property may
require accepting null values for the properties default value
+ String enableIoUringConfig = (String)
params.get(ENABLE_IO_URING_PROPERTY);
+ enableIoUring = isIoUringEnabled(enableIoUringConfig);
+
Review Comment:
Done, thanks
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]