-
-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated setenv2.sh script, KILLBILL_QUEUE_CREATOR_NAME is set only …
…if KILLBILL_QUEUE_CREATOR_AUTOGENERATE_NAME set to false. * Notification queue mode is set to POLLING by default.
- Loading branch information
Showing
3 changed files
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# Java Properties | ||
export CATALINA_OPTS="$CATALINA_OPTS | ||
-Dorg.killbill.queue.creator.name=${KILLBILL_QUEUE_CREATOR_NAME:-{{ inventory_hostname }}} | ||
-Dorg.killbill.queue.creator.autoGeneratedName=${KILLBILL_QUEUE_CREATOR_AUTOGENERATE_NAME:-true} | ||
-Dorg.killbill.server.properties=file://{{ kb_config_dir }}/killbill.properties | ||
{{ kb_system_properties }}" | ||
|
||
|
||
if [ "$KILLBILL_QUEUE_CREATOR_AUTOGENERATE_NAME" = "false" ]; then | ||
export CATALINA_OPTS="$CATALINA_OPTS -Dorg.killbill.queue.creator.name=${KILLBILL_QUEUE_CREATOR_NAME:-{{ inventory_hostname }}}" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters