This is an automated email from the ASF dual-hosted git repository. tanxinyu pushed a commit to branch rel/1.0 in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 7825b75ba83b167f7a993b97395095a980b48fe0 Author: Marccos <[email protected]> AuthorDate: Wed Dec 14 14:00:28 2022 +0800 fix log content --- .../apache/iotdb/db/metadata/schemaregion/SchemaRegionMemoryImpl.java | 2 +- .../iotdb/db/metadata/schemaregion/SchemaRegionSchemaFileImpl.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/main/java/org/apache/iotdb/db/metadata/schemaregion/SchemaRegionMemoryImpl.java b/server/src/main/java/org/apache/iotdb/db/metadata/schemaregion/SchemaRegionMemoryImpl.java index fa3db2d191..1665a2854a 100644 --- a/server/src/main/java/org/apache/iotdb/db/metadata/schemaregion/SchemaRegionMemoryImpl.java +++ b/server/src/main/java/org/apache/iotdb/db/metadata/schemaregion/SchemaRegionMemoryImpl.java @@ -439,7 +439,7 @@ public class SchemaRegionMemoryImpl implements ISchemaRegion { public synchronized boolean createSnapshot(File snapshotDir) { if (!initialized) { logger.warn( - "Failed to create snapshot of schemaRegion {}, because thi schemaRegion has not been initialized.", + "Failed to create snapshot of schemaRegion {}, because the schemaRegion has not been initialized.", schemaRegionId); return false; } diff --git a/server/src/main/java/org/apache/iotdb/db/metadata/schemaregion/SchemaRegionSchemaFileImpl.java b/server/src/main/java/org/apache/iotdb/db/metadata/schemaregion/SchemaRegionSchemaFileImpl.java index a8528c72d2..1ddca04302 100644 --- a/server/src/main/java/org/apache/iotdb/db/metadata/schemaregion/SchemaRegionSchemaFileImpl.java +++ b/server/src/main/java/org/apache/iotdb/db/metadata/schemaregion/SchemaRegionSchemaFileImpl.java @@ -426,7 +426,7 @@ public class SchemaRegionSchemaFileImpl implements ISchemaRegion { public boolean createSnapshot(File snapshotDir) { if (!initialized) { logger.warn( - "Failed to create snapshot of schemaRegion {}, because thi schemaRegion has not been initialized.", + "Failed to create snapshot of schemaRegion {}, because the schemaRegion has not been initialized.", schemaRegionId); return false; }
