diff options
author | Tim Bielawa <timbielawa@gmail.com> | 2016-10-13 09:38:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-13 09:38:38 -0700 |
commit | 4088ded1c0c7bc6b55980a5cd1bedb4e103a3087 (patch) | |
tree | 5efeaa529435b305074946fc39562eed10cb8bd0 /callback_plugins | |
parent | e5ee1f1188a778ca6e3b2291d62d89f79417c63e (diff) | |
parent | 70732ee8eb65921a3cce20905a13d30ecc37cf5c (diff) | |
download | openshift-4088ded1c0c7bc6b55980a5cd1bedb4e103a3087.tar.gz openshift-4088ded1c0c7bc6b55980a5cd1bedb4e103a3087.tar.bz2 openshift-4088ded1c0c7bc6b55980a5cd1bedb4e103a3087.tar.xz openshift-4088ded1c0c7bc6b55980a5cd1bedb4e103a3087.zip |
Merge pull request #2595 from tbielawa/aoi-fix-runner-on-failed
Fix missing play assignment in a-o-i callback plugin
Diffstat (limited to 'callback_plugins')
-rw-r--r-- | callback_plugins/openshift_quick_installer.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/callback_plugins/openshift_quick_installer.py b/callback_plugins/openshift_quick_installer.py index e2f125df9..fc9bfb899 100644 --- a/callback_plugins/openshift_quick_installer.py +++ b/callback_plugins/openshift_quick_installer.py @@ -1,4 +1,4 @@ -# pylint: disable=invalid-name,protected-access,import-error,line-too-long +# pylint: disable=invalid-name,protected-access,import-error,line-too-long,attribute-defined-outside-init # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -112,6 +112,8 @@ role. Only the tasks directly assigned to a play are exposed in the else: msg = "PLAY [%s]" % name + self._play = play + self.banner(msg) # pylint: disable=unused-argument,no-self-use |