This is an automated email from the ASF dual-hosted git repository.
zhangyifan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git
The following commit(s) were added to refs/heads/master by this push:
new dbac41a65 Fix missing spaces in Substitute pattern
dbac41a65 is described below
commit dbac41a659c6707d494413bfe873419424b5127e
Author: Ádám Bakai <[email protected]>
AuthorDate: Fri Apr 21 12:41:38 2023 +0200
Fix missing spaces in Substitute pattern
Change-Id: Ic8c52c2a70194d5d8733f01cd0f815a31371b672
Reviewed-on: http://gerrit.cloudera.org:8080/19780
Reviewed-by: Mahesh Reddy <[email protected]>
Reviewed-by: Yuqi Du <[email protected]>
Reviewed-by: Yifan Zhang <[email protected]>
Tested-by: Yifan Zhang <[email protected]>
---
src/kudu/tablet/tablet.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/kudu/tablet/tablet.cc b/src/kudu/tablet/tablet.cc
index 29019173e..dc42c2820 100644
--- a/src/kudu/tablet/tablet.cc
+++ b/src/kudu/tablet/tablet.cc
@@ -1630,8 +1630,8 @@ Status Tablet::FlushUnlocked() {
for (const auto& old_mrs : old_mrss) {
memory_footprint += old_mrs->memory_footprint();
}
- VLOG_WITH_PREFIX(1) << Substitute("Flush: entering stage 1 (old memrowset"
- "already frozen for inserts). Memstore"
+ VLOG_WITH_PREFIX(1) << Substitute("Flush: entering stage 1 (old memrowset "
+ "already frozen for inserts). Memstore "
"in-memory size: $0 bytes",
memory_footprint);
}