Skip to content

Commit

Permalink
Merge pull request #834 from untergeek/fix/829
Browse files Browse the repository at this point in the history
Change wait_for_completion default for snapshot
  • Loading branch information
untergeek committed Dec 7, 2016
2 parents 3af4678 + c055190 commit a403a39
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion curator/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '4.2.3.post1'
__version__ = '4.2.4.dev1'
4 changes: 3 additions & 1 deletion curator/singletons.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,9 @@ def replicas_singleton(
help='Do not fail if primary shard is unavailable.'
)
@click.option(
'--wait_for_completion', is_flag=True, help='Wait for operation to complete'
'--wait_for_completion',
type=bool, show_default=True, default=True,
help='Wait for operation to complete'
)
@click.option(
'--skip_repo_fs_check', is_flag=True, expose_value=True,
Expand Down
8 changes: 8 additions & 0 deletions docs/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
Changelog
=========

4.2.4 (? ? ?)
-------------

**Bug Fixes**

* ``--wait_for_completion`` should be `True` by default for Snapshot singleton
action. Reported in #829 (untergeek)

4.2.3.post1 (22 November 2016)
------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/asciidoc/index.asciidoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:curator_version: 4.2.3
:curator_version: 4.2.4
:curator_major: 4
:es_py_version: 2.4.0
:ref: http://www.elastic.co/guide/en/elasticsearch/reference/current
Expand Down

0 comments on commit a403a39

Please sign in to comment.