Merge pull request #9827 from littlejawa/fix_panic_on_metrics_gathering

runtime: avoid panic on metrics gathering
This commit is contained in:
Steve Horsman
2024-06-14 11:12:43 +01:00
committed by GitHub

View File

@@ -267,7 +267,7 @@ func (rh *remoteHypervisor) GetPids() []int {
}
func (rh *remoteHypervisor) GetVirtioFsPid() *int {
panic(notImplemented("GetVirtioFsPid"))
return nil
}
func (rh *remoteHypervisor) fromGrpc(ctx context.Context, hypervisorConfig *HypervisorConfig, j []byte) error {