Skip to content

Commit

Permalink
Merge 53a7c0e into d102931
Browse files Browse the repository at this point in the history
  • Loading branch information
mregrock authored May 14, 2024
2 parents d102931 + 53a7c0e commit 573c0b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ydb/core/blobstorage/pdisk/blobstorage_pdisk_impl_http.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ void TPDisk::OutputHtmlOwners(TStringStream &str) {
if (data.VDiskId != TVDiskID::InvalidId) {
TABLER() {
TABLED() { str << (ui32) owner;}
TABLED() { str << data.VDiskId.ToStringWOGeneration(); }
TABLED() { str << data.VDiskId.ToStringWOGeneration() << "<br/>(" << data.VDiskId.GroupID << ")"; }
TABLED() { str << chunksOwned[owner]; }
TABLED() { str << data.CutLogId.ToString(); }
TABLED() { str << data.WhiteboardProxyId; }
Expand Down Expand Up @@ -275,7 +275,7 @@ void TPDisk::OutputHtmlLogChunksDetails(TStringStream &str) {
if (id == TVDiskID::InvalidId) {
TABLEH() {str << "o" << owner << "v--"; }
} else {
TABLEH() {str << "o" << owner << "v" << id.ToStringWOGeneration(); }
TABLEH() {str << "o" << owner << "v" << id.ToStringWOGeneration() << "<br/>(" << id.GroupID << ")"; }
}
}
}
Expand Down

0 comments on commit 573c0b6

Please sign in to comment.