chore: bump protos to rc18 (#265)

Signed-off-by: Mike Nguyen <hey@mike.ee>
This commit is contained in:
Mike Nguyen 2025-02-27 13:47:18 +00:00 committed by GitHub
parent 99d099f15e
commit 1508ea24cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 19 additions and 3 deletions

View File

@ -2373,9 +2373,18 @@ pub struct GetMetadataResponse {
pub runtime_version: ::prost::alloc::string::String,
#[prost(string, repeated, tag = "9")]
pub enabled_features: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// TODO: Cassie: probably add scheduler runtime status
#[prost(message, optional, tag = "10")]
pub actor_runtime: ::core::option::Option<ActorRuntime>,
#[prost(message, optional, tag = "11")]
pub scheduler: ::core::option::Option<MetadataScheduler>,
}
/// MetadataScheduler is a message that contains the list of addresses of the
/// scheduler connections.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MetadataScheduler {
/// connected_addresses the list of addresses of the scheduler connections.
#[prost(string, repeated, tag = "1")]
pub connected_addresses: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ActorRuntime {

Binary file not shown.

View File

@ -694,7 +694,14 @@ message GetMetadataResponse {
string runtime_version = 8 [json_name = "runtimeVersion"];
repeated string enabled_features = 9 [json_name = "enabledFeatures"];
ActorRuntime actor_runtime = 10 [json_name = "actorRuntime"];
//TODO: Cassie: probably add scheduler runtime status
optional MetadataScheduler scheduler = 11 [json_name = "scheduler"];
}
// MetadataScheduler is a message that contains the list of addresses of the
// scheduler connections.
message MetadataScheduler {
// connected_addresses the list of addresses of the scheduler connections.
repeated string connected_addresses = 1;
}
message ActorRuntime {
@ -1344,4 +1351,4 @@ message ConversationResponse {
// An array of results.
repeated ConversationResult outputs = 2;
}
}