Skip to content
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

[stable-2.9]mongodb_replicaset/test: properly kill the nodes #62628

Merged
merged 1 commit into from Sep 24, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/integration/targets/mongodb_replicaset/tasks/main.yml
Expand Up @@ -89,7 +89,7 @@
wait_for:
path: "/proc/{{ item }}/status"
state: absent
with_items: "{{ pids_of_mongod }}"
with_items: "{{ pids_of_mongod.pids }}"

- set_fact:
current_replicaset: "{{ mongodb_replicaset1 }}"
Expand Down
Expand Up @@ -36,7 +36,6 @@
chdir: "{{ remote_tmp_dir }}"
with_items: "{{ mongodb_nodes | sort }}"
when: mongod_auth == True
ignore_errors: yes

- name: Wait for mongod to start responding
wait_for:
Expand Down