Skip to content

Commit

Permalink
replace_node.yml: Don't skip scylla-manager repair if disable_rbno is…
Browse files Browse the repository at this point in the history
… true
  • Loading branch information
igorribeiroduarte authored and vladzcloudius committed May 16, 2024
1 parent b7315d0 commit edc9e7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example-playbooks/replace_node/replace_node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@
tasks:
- name: Skip this play if RBNO was used for the replacement or if skip_repair is true
meta: end_play
when: skip_repair|bool or (hostvars[new_node]['_enable_rbno_grep'].failed == false and hostvars[new_node]['_rbno_enabled'] and hostvars[new_node]['_rbno_allowed_for_replace'])
when: skip_repair|bool or (disable_rbno|bool == false and hostvars[new_node]['_enable_rbno_grep'].failed == false and hostvars[new_node]['_rbno_enabled'] and hostvars[new_node]['_rbno_allowed_for_replace'])

- name: Get cluster id
shell: |
Expand Down

0 comments on commit edc9e7f

Please sign in to comment.