fix tagged implicit gathering (#48294)

* fix tagged implicit gathering

 - None is not tHe default anymore, its an empty list

* Update changelogs/fragments/fix_taggged_gather.yml

Co-Authored-By: bcoca <bcoca@users.noreply.github.com>
pull/48419/head
Brian Coca 6 years ago committed by John R Barker
parent 9050c7abeb
commit b047591dee

@ -0,0 +1,2 @@
bugfixes:
- now default is ``list`` so ``None`` is bad comparison for gathering

@ -180,7 +180,7 @@ class PlayIterator:
}
# Unless play is specifically tagged, gathering should 'always' run
if self._play.tags is None:
if not self._play.tags:
setup_task.tags = ['always']
if gather_timeout:

Loading…
Cancel
Save