-
Notifications
You must be signed in to change notification settings - Fork 56
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
Implement infinispan TCPPING discovery protocol #159
Implement infinispan TCPPING discovery protocol #159
Conversation
@guidograzioli anything you want to change on this one, or the two other PRs? -- thanks. |
No prob with the changes, I just hadn't time to review yet sorry |
- name: "Rebuild {{ keycloak.service_name }} config" | ||
ansible.builtin.shell: | | ||
{{ keycloak.home }}/bin/kc.sh build | ||
become: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because this is imported from the handler, and notified when that change is required, I'd changed_when: True
this one. wdyt?
1f5f316
to
df81dc5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM thanks
kc.sh build
invocation in order to minimize startup time; moreover, I had issues with getting TCPPING config to work since keycloak, upon a regular invocation ofkc.sh start
creates it's own internal cache which is kept until a build is re-run; this newly added handler will save us some headaches in futurekc.sh start --optimized
in case--start-dev
is not executed, thus re-using the aforementioned pre-built configurationFix #158