We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2092cd6 commit 39aead8Copy full SHA for 39aead8
ydb/core/health_check/health_check.cpp
@@ -1715,12 +1715,9 @@ class TSelfCheckRequest : public TActorBootstrapped<TSelfCheckRequest> {
1715
ETags::PDiskState);
1716
}
1717
switch (status->number()) {
1718
- case NKikimrBlobStorage::ACTIVE: {
1719
- context.ReportStatus(Ydb::Monitoring::StatusFlag::GREEN);
1720
- break;
1721
- }
+ case NKikimrBlobStorage::ACTIVE:
1722
case NKikimrBlobStorage::INACTIVE: {
1723
- context.ReportStatus(Ydb::Monitoring::StatusFlag::YELLOW, "PDisk is inactive", ETags::PDiskState);
+ context.ReportStatus(Ydb::Monitoring::StatusFlag::GREEN);
1724
break;
1725
1726
case NKikimrBlobStorage::FAULTY:
0 commit comments