Skip to content

Commit

Permalink
Merge pull request #66 from Ontotext-AD/fixed_gdb_java_opts_appending
Browse files Browse the repository at this point in the history
Fixed the graphdb.env appending of properties.
  • Loading branch information
viktor-ribchev authored Mar 27, 2024
2 parents 4865f05 + a24893d commit d9c44b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/graphdb/templates/03_gdb_conf_overrides.sh.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ if [[ $secrets == *"${graphdb_java_options_secret_name}"* ]]; then
extra_graphdb_java_options=$(az appconfig kv show --endpoint "$APP_CONFIG_ENDPOINT" --auth-mode login --key ${graphdb_java_options_secret_name} | jq -r .value | base64 -d)
(
source /etc/graphdb/graphdb.env
echo "GDB_JAVA_OPTS=$GDB_JAVA_OPTS $extra_graphdb_java_options" >> /etc/graphdb/graphdb.env
echo "GDB_JAVA_OPTS=\"$GDB_JAVA_OPTS $extra_graphdb_java_options\"" >> /etc/graphdb/graphdb.env
)
fi

Expand Down

0 comments on commit d9c44b1

Please sign in to comment.