diff options
author | Nikolay Shestakov <tesseract@ydb.tech> | 2024-11-23 10:53:25 +0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-23 10:53:25 +0500 |
commit | 8e35b97c0da2c50cc8b9f288fdb6318239b6b37d (patch) | |
tree | 392a7c0a9d150a8e1057def0230064c252aed0dd | |
parent | fed023977807e8f2d350197cfadf0afe9b0b24cb (diff) | |
download | ydb-8e35b97c0da2c50cc8b9f288fdb6318239b6b37d.tar.gz |
Fix URL for transaction page of PQ tablet (#11900)
-rw-r--r-- | ydb/core/persqueue/pq_impl_app.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/persqueue/pq_impl_app.cpp b/ydb/core/persqueue/pq_impl_app.cpp index 299ee7e7a8..f2b7a0ffd6 100644 --- a/ydb/core/persqueue/pq_impl_app.cpp +++ b/ydb/core/persqueue/pq_impl_app.cpp @@ -119,7 +119,7 @@ private: for (auto& tx : Transactions) { TABLER() { TABLED() { - HREF(TStringBuilder() << "?TxId=" << tx.TxId) { + HREF(TStringBuilder() << "?TabletID=" << TabletID << "&TxId=" << tx.TxId) { str << tx.TxId; } } |