Skip to content

Commit

Permalink
fix: ignore MO_CONF_SRC_PATH when it is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
aronchanisme committed Jan 26, 2024
1 parent 4a611a1 commit 42fc7d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/set_conf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function set_kv()
# 2. check if value is not empty, that is, a valid value
if [[ "${value}" == "" ]]; then
case "${key}" in
"MO_CONTAINER_DATA_HOST_PATH" | "MO_CONTAINER_CONF_HOST_PATH" | "CSV_CONVERT_META_COLUMN_LIST" | "MO_CONTAINER_LIMIT_CPU" | "MO_CONTAINER_LIMIT_MEMORY" | "MO_CONTAINER_EXTRA_MOUNT_OPTION")
"MO_CONTAINER_DATA_HOST_PATH" | "MO_CONTAINER_CONF_HOST_PATH" | "CSV_CONVERT_META_COLUMN_LIST" | "MO_CONTAINER_LIMIT_CPU" | "MO_CONTAINER_LIMIT_MEMORY" | "MO_CONTAINER_EXTRA_MOUNT_OPTION" | "MO_CONF_SRC_PATH")
:
;;
*)
Expand Down

0 comments on commit 42fc7d1

Please sign in to comment.