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

qa/standalone/osd/osd-markdown: disable CLI command dups #26489

Merged
merged 1 commit into from
Feb 20, 2019
Merged
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
5 changes: 4 additions & 1 deletion qa/standalone/osd/osd-markdown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ function markdown_N_impl() {
ceph osd tree
ceph osd tree | grep osd.0 |grep up || return 1
# mark the OSD down.
ceph osd down 0
# override any dup setting in the environment to ensure we do this
# exactly once (modulo messenger failures, at least; we can't *actually*
# provide exactly-once semantics for mon commands).
CEPH_CLI_TEST_DUP_COMMAND=0 ceph osd down 0
sleep $sleeptime
done
}
Expand Down