From 065c6708b11a9d5718b5966807db02e8791a7bcd Mon Sep 17 00:00:00 2001 From: TP Honey Date: Fri, 29 Nov 2024 10:28:34 +0000 Subject: [PATCH] (fix) add ListActiveSourcesStatus --- account.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/account.proto b/account.proto index 06f5a02..035a995 100644 --- a/account.proto +++ b/account.proto @@ -157,6 +157,8 @@ service ManagementService { // Sources heartbeat and health // List of all recently active sources and their health, includes managed and local sources rpc ListAllSourcesStatus(ListAllSourcesStatusRequest) returns (ListAllSourcesStatusResponse); + // For the explore page, list active sources and their health + rpc ListActiveSourcesStatus(ListAllSourcesStatusRequest) returns (ListAllSourcesStatusResponse); // Heartbeat from a source to keep it registered and healthy rpc SubmitSourceHeartbeat(SubmitSourceHeartbeatRequest) returns (SubmitSourceHeartbeatResponse);