Skip to content

Commit

Permalink
chore(bors): merge pull request #433
Browse files Browse the repository at this point in the history
433: chore: update to latest io-engine api r=tiagolobocastro a=tiagolobocastro

Signed-off-by: Tiago Castro <[email protected]>

Co-authored-by: Tiago Castro <[email protected]>
  • Loading branch information
mayastor-bors and tiagolobocastro committed Feb 6, 2023
2 parents 2ea8afd + fd13a3c commit 6c305d3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion control-plane/agents/src/bin/core/controller/grpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,7 @@ impl GrpcClient {
.list_replicas(ListReplicaOptions {
name: None,
poolname: None,
uuid: None,
})
.await
.context(GrpcRequestError {
Expand Down Expand Up @@ -502,6 +503,7 @@ impl GrpcClient {
.list_pools(ListPoolOptions {
name: None,
pooltype: None,
uuid: None,
})
.await
.context(GrpcRequestError {
Expand Down Expand Up @@ -550,7 +552,10 @@ impl GrpcClient {
let rpc_nexuses = self
.client_v1()?
.nexus
.list_nexus(ListNexusOptions { name: None })
.list_nexus(ListNexusOptions {
name: None,
uuid: None,
})
.await
.context(GrpcRequestError {
resource: ResourceKind::Nexus,
Expand Down
2 changes: 1 addition & 1 deletion rpc/api
Submodule api updated from f54c0c to 936f12

0 comments on commit 6c305d3

Please sign in to comment.