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 acd8968 commit ef58863Copy full SHA for ef58863
src/api/protos/ydb_keyvalue.proto
@@ -514,6 +514,9 @@ message DescribeVolumeResult {
514
515
// Count of partitions.
516
uint64 partition_count = 2;
517
+
518
+ // Storage config.
519
+ StorageConfig storage_config = 3;
520
}
521
522
message ListLocalPartitionsRequest {
src/client/topic/impl/write_session_impl.cpp
@@ -988,7 +988,7 @@ TStringBuilder TWriteSessionImpl::LogPrefixImpl() const {
988
Y_ABORT_UNLESS(Lock.IsLocked());
989
990
TStringBuilder ret;
991
- ret << " TraceId [" << Settings.TraceId_ << "] ";;
+ ret << " TraceId [" << Settings.TraceId_ << "] ";
992
ret << " SessionId [" << SessionId << "] ";
993
994
if (Settings.PartitionId_.has_value() || DirectWriteToPartitionId.has_value()) {
0 commit comments