Copilot commented on code in PR #2980:
URL: https://github.com/apache/hugegraph/pull/2980#discussion_r3033672855
##########
docker/docker-compose.dev.yml:
##########
@@ -42,6 +42,7 @@ services:
HG_PD_RAFT_PEERS_LIST: pd:8610
HG_PD_INITIAL_STORE_LIST: store:8500
HG_PD_DATA_PATH: /hugegraph-pd/pd_data
+ STDOUT_MODE: true
ports:
Review Comment:
`STDOUT_MODE` is set as an unquoted YAML boolean here, while the scripts
compare it to the string "true" (and other compose files use "true"). To avoid
any YAML-to-string coercion edge cases and keep consistency, set it as a quoted
string (e.g., `"true"`).
--
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]