sadadw1 opened a new issue, #685: URL: https://github.com/apache/ozhera/issues/685
### What happened? In `readme/best-practices/deployment.md` (EN), the YAML `command` arrays for `trace-etl-es` and `nacos` contain stray spaces that break JVM flags and a file path: - `-Duser .timezone=Asia/Shanghai` (broken `-Duser.timezone` JVM property — a space before the dot) - `/home/work/trace-etl-es /trace-etl-es-1.0.0-SNAPSHOT.jar` (broken path — a space splits `trace-etl-es/trace-etl-es...`) - `-Dnacos. standalone=true` (broken `-Dnacos.standalone` property — a space before the dot) The CN counterpart `readme/best-practices/deployment_cn.md` has the correct, unbroken versions: - `-Duser.timezone=Asia/Shanghai` - `trace-etl-es/trace-etl-es-1.0.0-SNAPSHOT.jar` - `-Dnacos.standalone=true` ### Impact Documentation-only. Anyone copying these `command` arrays verbatim would start the container with invalid JVM flags / a non-existent jar path. No runtime/business logic of OzHera itself is affected. ### Suggested fix Remove the three stray spaces in `readme/best-practices/deployment.md` to match the (correct) CN version. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
