fix(rpc): rename HostStatus to GetHostStatus (#360)

This commit is contained in:
Alex Zenla
2024-08-24 23:24:46 -07:00
committed by GitHub
parent ec74bc8d2b
commit 41aa1aa707
5 changed files with 19 additions and 19 deletions

View File

@ -1,6 +1,6 @@
use anyhow::Result;
use clap::{Parser, ValueEnum};
use krata::v1::control::{control_service_client::ControlServiceClient, HostStatusRequest};
use krata::v1::control::{control_service_client::ControlServiceClient, GetHostStatusRequest};
use crate::format::{kv2line, proto2dynamic, proto2kv};
use tonic::{transport::Channel, Request};
@ -24,7 +24,7 @@ pub struct HostStatusCommand {
impl HostStatusCommand {
pub async fn run(self, mut client: ControlServiceClient<Channel>) -> Result<()> {
let response = client
.host_status(Request::new(HostStatusRequest {}))
.get_host_status(Request::new(GetHostStatusRequest {}))
.await?
.into_inner();
match self.format {