fixed missing ovmf_hash field in UpdateVMResp
This commit is contained in:
parent
b5943ba465
commit
d5a771d28a
@ -354,6 +354,7 @@ impl BrainData {
|
|||||||
self.submit_updatevm_resp(grpc::UpdateVmResp {
|
self.submit_updatevm_resp(grpc::UpdateVmResp {
|
||||||
uuid,
|
uuid,
|
||||||
error: "Daemon is offline.".to_string(),
|
error: "Daemon is offline.".to_string(),
|
||||||
|
ovmf_hash: "".to_string(),
|
||||||
})
|
})
|
||||||
.await;
|
.await;
|
||||||
}
|
}
|
||||||
|
@ -256,6 +256,7 @@ impl BrainDaemonService for BrainDaemonMock {
|
|||||||
data.submit_updatevm_resp(UpdateVmResp {
|
data.submit_updatevm_resp(UpdateVmResp {
|
||||||
error: "Daemon not connected.".to_string(),
|
error: "Daemon not connected.".to_string(),
|
||||||
uuid: updatevmreq.uuid,
|
uuid: updatevmreq.uuid,
|
||||||
|
ovmf_hash: "".to_string(),
|
||||||
})
|
})
|
||||||
.await;
|
.await;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user