diff options
author | Dmitry Raspopov <dmitry.raspopov@gmail.com> | 2025-05-19 21:28:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-19 21:28:02 +0300 |
commit | 494e5db60c62affb10ae26f44cdf1f94d08acbb7 (patch) | |
tree | 3138969cb931ca7442aa03bbd54881f2a78c5791 | |
parent | 0e541ffb91eb363541057f34fb1fa487683f524f (diff) | |
download | ydb-494e5db60c62affb10ae26f44cdf1f94d08acbb7.tar.gz |
bug ydb-cpp-sdk: fix federated topic debug print templates (#18502)
-rw-r--r-- | ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/federated_topic/federated_topic.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/federated_topic/federated_topic.h b/ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/federated_topic/federated_topic.h index 07edbaef929..87788ab8d35 100644 --- a/ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/federated_topic/federated_topic.h +++ b/ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/federated_topic/federated_topic.h @@ -564,20 +564,20 @@ void TPrintable<TFederatedPartitionSession>::DebugString(TStringBuilder& res, bo template<> void TPrintable<NFederatedTopic::TReadSessionEvent::TDataReceivedEvent>::DebugString(TStringBuilder& res, bool) const; template<> -void TPrintable<NFederatedTopic::TReadSessionEvent::TFederated<NFederatedTopic::TReadSessionEvent::TDataReceivedEvent::TMessage>>::DebugString(TStringBuilder& res, bool) const; +void TPrintable<NFederatedTopic::TReadSessionEvent::TDataReceivedEvent::TMessage>::DebugString(TStringBuilder& res, bool) const; template<> -void TPrintable<NFederatedTopic::TReadSessionEvent::TFederated<NFederatedTopic::TReadSessionEvent::TDataReceivedEvent::TCompressedMessage>>::DebugString(TStringBuilder& res, bool) const; +void TPrintable<NFederatedTopic::TReadSessionEvent::TDataReceivedEvent::TCompressedMessage>::DebugString(TStringBuilder& res, bool) const; template<> -void TPrintable<NFederatedTopic::TReadSessionEvent::TFederated<NFederatedTopic::TReadSessionEvent::TCommitOffsetAcknowledgementEvent>>::DebugString(TStringBuilder& res, bool) const; +void TPrintable<NFederatedTopic::TReadSessionEvent::TCommitOffsetAcknowledgementEvent>::DebugString(TStringBuilder& res, bool) const; template<> -void TPrintable<NFederatedTopic::TReadSessionEvent::TFederated<NFederatedTopic::TReadSessionEvent::TStartPartitionSessionEvent>>::DebugString(TStringBuilder& res, bool) const; +void TPrintable<NFederatedTopic::TReadSessionEvent::TStartPartitionSessionEvent>::DebugString(TStringBuilder& res, bool) const; template<> -void TPrintable<NFederatedTopic::TReadSessionEvent::TFederated<NFederatedTopic::TReadSessionEvent::TStopPartitionSessionEvent>>::DebugString(TStringBuilder& res, bool) const; +void TPrintable<NFederatedTopic::TReadSessionEvent::TStopPartitionSessionEvent>::DebugString(TStringBuilder& res, bool) const; template<> -void TPrintable<NFederatedTopic::TReadSessionEvent::TFederated<NFederatedTopic::TReadSessionEvent::TEndPartitionSessionEvent>>::DebugString(TStringBuilder& res, bool) const; +void TPrintable<NFederatedTopic::TReadSessionEvent::TEndPartitionSessionEvent>::DebugString(TStringBuilder& res, bool) const; template<> -void TPrintable<NFederatedTopic::TReadSessionEvent::TFederated<NFederatedTopic::TReadSessionEvent::TPartitionSessionStatusEvent>>::DebugString(TStringBuilder& res, bool) const; +void TPrintable<NFederatedTopic::TReadSessionEvent::TPartitionSessionStatusEvent>::DebugString(TStringBuilder& res, bool) const; template<> -void TPrintable<NFederatedTopic::TReadSessionEvent::TFederated<NFederatedTopic::TReadSessionEvent::TPartitionSessionClosedEvent>>::DebugString(TStringBuilder& res, bool) const; +void TPrintable<NFederatedTopic::TReadSessionEvent::TPartitionSessionClosedEvent>::DebugString(TStringBuilder& res, bool) const; } |