diff options
| author | Nikolay Shestakov <[email protected]> | 2024-11-23 10:53:25 +0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-11-23 10:53:25 +0500 |
| commit | 8e35b97c0da2c50cc8b9f288fdb6318239b6b37d (patch) | |
| tree | 392a7c0a9d150a8e1057def0230064c252aed0dd | |
| parent | fed023977807e8f2d350197cfadf0afe9b0b24cb (diff) | |
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 299ee7e7a8f..f2b7a0ffd6c 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; } } |
