Skip to content

Update default for activemq_systemd_wait_for_log_ha_string #186

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion roles/activemq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ Sample divert:
|`activemq_systemd_wait_for_log` | Whether systemd unit should wait for service to be up in logs | `True` when `activemq_ha_enabled` and `activemq_shared_storage` are both `True` |
|`activemq_systemd_wait_for_timeout`| How long to wait for service to be alive (seconds) | `60` |
|`activemq_systemd_wait_for_delay`| Activation delay for service systemd unit | `10` |
|`activemq_systemd_wait_for_log_ha_string` | The string to match in the logs when `activemq_systemd_wait_for_log` is true and HA is enabled | `AMQ221109\|AMQ221001` |
|`activemq_systemd_wait_for_log_ha_string` | The string to match in the logs when `activemq_systemd_wait_for_log` is true and HA is enabled | `AMQ221109\|AMQ221001\|AMQ221034` |
|`activemq_systemd_wait_for_log_string` | The string to match in the logs when `activemq_systemd_wait_for_log` is true and HA is not enabled | `AMQ221034` |
|`activemq_systemd_wait_for_port_number`| The port number to wait for when `activemq_systemd_wait_for_port` is true | `{{ activemq_port }}` |
|`activemq_systemd_expand_environment` | Whether or not to expand the environment in the sysconfig file. If true, environment file is sourced and the activemq process is started in a shell | `false` |
Expand Down
2 changes: 1 addition & 1 deletion roles/activemq/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ activemq_systemd_wait_for_port: "{{ activemq_ha_enabled and not activemq_shared_
activemq_systemd_wait_for_log: "{{ activemq_ha_enabled and activemq_shared_storage }}"
activemq_systemd_wait_for_timeout: 60
activemq_systemd_wait_for_delay: 10
activemq_systemd_wait_for_log_ha_string: 'AMQ221109\\\\|AMQ221001'
activemq_systemd_wait_for_log_ha_string: 'AMQ221109\\\\|AMQ221001\\\\|AMQ221034'
activemq_systemd_wait_for_log_string: 'AMQ221034'
activemq_systemd_wait_for_port_number: "{{ activemq_port }}"
activemq_systemd_expand_environment: false
Expand Down
2 changes: 1 addition & 1 deletion roles/activemq/meta/argument_specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ argument_specs:
default: -1
type: 'int'
activemq_systemd_wait_for_log_ha_string:
default: 'AMQ221109\\\\|AMQ221001'
default: 'AMQ221109\\\\|AMQ221001\\\\|AMQ221034'
type: "str"
description: "The string to match in the logs when activemq_systemd_wait_for_log is true and HA is enabled"
activemq_systemd_wait_for_log_string:
Expand Down