Skip to content

Commit

Permalink
[NBS] Tweak DA's status on mon page (#1072)
Browse files Browse the repository at this point in the history
  • Loading branch information
sharpeye authored Apr 26, 2024
1 parent b4ff2c5 commit d57bc58
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ void TDiskAgentActor::HandleHttpInfo(
TStringStream out;

HTML(out) {
if (CurrentStateFunc() == &TThis::StateIdle) {
if (CurrentStateFunc() == &TThis::StateInit) {
DIV() { out << "Initialization in progress"; }
} else if (CurrentStateFunc() == &TThis::StateIdle) {
DIV() { out << "Unregistered (Idle)"; }
} else {
if (RegistrationInProgress) {
Expand Down

0 comments on commit d57bc58

Please sign in to comment.