From 7dbd44251970344e9b0df2168f63d3a25858a542 Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Thu, 25 Sep 2025 18:55:47 +0800 Subject: [PATCH] fix: force fetch VM data (#535) --- pkg/harvester/list/kubevirt.io.virtualmachine.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/harvester/list/kubevirt.io.virtualmachine.vue b/pkg/harvester/list/kubevirt.io.virtualmachine.vue index 7750423e..357cc68d 100644 --- a/pkg/harvester/list/kubevirt.io.virtualmachine.vue +++ b/pkg/harvester/list/kubevirt.io.virtualmachine.vue @@ -74,7 +74,7 @@ export default { async fetch() { const inStore = this.$store.getters['currentProduct'].inStore; const _hash = { - vms: this.$store.dispatch(`${ inStore }/findAll`, { type: HCI.VM }), + vms: this.$store.dispatch(`${ inStore }/findAll`, { type: HCI.VM, opt: { force: true } }), pod: this.$store.dispatch(`${ inStore }/findAll`, { type: POD }), pvcs: this.$store.dispatch(`${ inStore }/findAll`, { type: PVC }), pvs: this.$store.dispatch(`${ inStore }/findAll`, { type: PV }),