diff --git a/client-gui2 b/client-gui2 index c2b788b3..bdefd862 160000 --- a/client-gui2 +++ b/client-gui2 @@ -1 +1 @@ -Subproject commit c2b788b30095ea69bc09bbe4b8c74665508c7ec8 +Subproject commit bdefd862ebf3a984b1621978e73e6576a3b34c86 diff --git a/common/proto/backup.proto b/common/proto/backup.proto index 3375957d..1589883a 100644 --- a/common/proto/backup.proto +++ b/common/proto/backup.proto @@ -57,4 +57,10 @@ message BackupOperationResponse { message BackupInfoResponse { bool success = 1; string output = 2; + string server_version = 3; + string database_name = 4; + bool database_healthy = 5; + bool search_healthy = 6; + bool ecb_healthy = 7; + string ecb_status = 8; } diff --git a/common/src/proto/descriptor.bin b/common/src/proto/descriptor.bin index cc9aa2ca..6c695577 100644 Binary files a/common/src/proto/descriptor.bin and b/common/src/proto/descriptor.bin differ diff --git a/common/src/proto/komp_ac.backup.rs b/common/src/proto/komp_ac.backup.rs index a548dce2..fe56a94f 100644 --- a/common/src/proto/komp_ac.backup.rs +++ b/common/src/proto/komp_ac.backup.rs @@ -38,6 +38,18 @@ pub struct BackupInfoResponse { pub success: bool, #[prost(string, tag = "2")] pub output: ::prost::alloc::string::String, + #[prost(string, tag = "3")] + pub server_version: ::prost::alloc::string::String, + #[prost(string, tag = "4")] + pub database_name: ::prost::alloc::string::String, + #[prost(bool, tag = "5")] + pub database_healthy: bool, + #[prost(bool, tag = "6")] + pub search_healthy: bool, + #[prost(bool, tag = "7")] + pub ecb_healthy: bool, + #[prost(string, tag = "8")] + pub ecb_status: ::prost::alloc::string::String, } #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] diff --git a/server b/server index 5f85cc44..13424600 160000 --- a/server +++ b/server @@ -1 +1 @@ -Subproject commit 5f85cc44a653eb93af5bae17c6d93d5cfce2ac74 +Subproject commit 134246004802400453349934d3f6794ddf3e8654