shuwenwei commented on code in PR #12706:
URL: https://github.com/apache/iotdb/pull/12706#discussion_r1635722965


##########
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/conf/ConfigurationFileUtils.java:
##########
@@ -158,7 +160,7 @@ public static String readConfigurationTemplateFile() throws 
IOException {
         BufferedReader reader = new BufferedReader(isr)) {
       String line;
       while ((line = reader.readLine()) != null) {
-        content.append(line).append(System.lineSeparator());
+        content.append(line).append("\n");

Review Comment:
   In order to be compatible with some scripts, the newline characters in the 
configuration file need to be used uniformly '\n'



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to