The fix was on RPC level so everything should advertise it.
Signed-off-by: Peter Krempa <pkrempa(a)redhat.com>
---
src/driver.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/driver.c b/src/driver.c
index d070861cfd..54b4ad5b43 100644
--- a/src/driver.c
+++ b/src/driver.c
@@ -357,10 +357,12 @@ virDriverFeatureIsGlobal(virDrvFeature feat,
* At this point everything supports them and thus also drivers need to
* always advertise this feature */
case VIR_DRV_FEATURE_TYPED_PARAM_STRING:
+ /* Feature flag exposes that accidental switching of order of arguments
+ * in RPC was fixed. All implementations need to advertise this feature */
+ case VIR_DRV_FEATURE_NETWORK_UPDATE_HAS_CORRECT_ORDER:
*supported = 1;
return true;
- case VIR_DRV_FEATURE_NETWORK_UPDATE_HAS_CORRECT_ORDER:
case VIR_DRV_FEATURE_FD_PASSING:
case VIR_DRV_FEATURE_MIGRATION_V2:
case VIR_DRV_FEATURE_MIGRATION_V3:
--
2.35.1