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 e0e98b1 commit 61b7d6cCopy full SHA for 61b7d6c
ydb/public/sdk/cpp/client/ydb_federated_topic/impl/federated_write_session.cpp
@@ -175,6 +175,14 @@ std::shared_ptr<NTopic::IWriteSession> TFederatedWriteSessionImpl::OpenSubsessio
175
}
176
});
177
178
+ {
179
+ // Unacknowledged messages should be resent.
180
+ for (auto& msg : OriginalMessagesToPassDown) {
181
+ OriginalMessagesToGetAck.emplace_back(std::move(msg));
182
+ }
183
+ OriginalMessagesToPassDown = std::move(OriginalMessagesToGetAck);
184
185
+
186
NTopic::TWriteSessionSettings wsSettings = Settings;
187
wsSettings
188
// .MaxMemoryUsage(Settings.MaxMemoryUsage_) // to fix if split not by half on creation
0 commit comments