From 5c284586240da12a8ed70607aebc026e1657a41b Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Thu, 28 May 2026 13:19:54 -0400 Subject: [PATCH] client/rust: regenerate protos for BrowseChildren --- clients/rust/src/galaxy.rs | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/clients/rust/src/galaxy.rs b/clients/rust/src/galaxy.rs index 6897c2b..3365884 100644 --- a/clients/rust/src/galaxy.rs +++ b/clients/rust/src/galaxy.rs @@ -234,9 +234,10 @@ mod tests { GalaxyRepository, GalaxyRepositoryServer, }; use crate::generated::galaxy_repository::v1::{ - DeployEvent, DiscoverHierarchyReply, DiscoverHierarchyRequest, GalaxyAttribute, - GalaxyObject, GetLastDeployTimeReply, GetLastDeployTimeRequest, TestConnectionReply, - TestConnectionRequest, WatchDeployEventsRequest, + BrowseChildrenReply, BrowseChildrenRequest, DeployEvent, DiscoverHierarchyReply, + DiscoverHierarchyRequest, GalaxyAttribute, GalaxyObject, GetLastDeployTimeReply, + GetLastDeployTimeRequest, TestConnectionReply, TestConnectionRequest, + WatchDeployEventsRequest, }; type DeployEventTx = mpsc::Sender>; @@ -306,6 +307,13 @@ mod tests { })) } + async fn browse_children( + &self, + _request: Request, + ) -> Result, Status> { + Err(Status::unimplemented("browse_children not implemented in FakeGalaxy")) + } + type WatchDeployEventsStream = Pin> + Send + 'static>>;