diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-10-27 10:29:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-27 10:29:56 -0400 |
commit | d645b81d0a60a682b0c488d0f9a08383542d659e (patch) | |
tree | 89158224709ef3bd77ef608806dbcdf46c8e48ea | |
parent | b8f0cb1e8a1611bee28bdf65b841a908cc4da676 (diff) | |
parent | b21db4a824714cac5a3e63de2fe5e2b9da592045 (diff) | |
download | openshift-d645b81d0a60a682b0c488d0f9a08383542d659e.tar.gz openshift-d645b81d0a60a682b0c488d0f9a08383542d659e.tar.bz2 openshift-d645b81d0a60a682b0c488d0f9a08383542d659e.tar.xz openshift-d645b81d0a60a682b0c488d0f9a08383542d659e.zip |
Merge pull request #5874 from mtnbikenc/fix-5675
Remove 'Not Started' status from playbook checkpoint
-rw-r--r-- | roles/installer_checkpoint/callback_plugins/installer_checkpoint.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/roles/installer_checkpoint/callback_plugins/installer_checkpoint.py b/roles/installer_checkpoint/callback_plugins/installer_checkpoint.py index 55c44bb84..d8a5c61f9 100644 --- a/roles/installer_checkpoint/callback_plugins/installer_checkpoint.py +++ b/roles/installer_checkpoint/callback_plugins/installer_checkpoint.py @@ -166,11 +166,6 @@ class CallbackModule(CallbackBase): self._display.display( '\tThis phase can be restarted by running: {}'.format( phase_attributes[phase]['playbook'])) - else: - # Phase was not found in custom stats - self._display.display( - '{}{}: {}'.format(phase_title, ' ' * padding, 'Not Started'), - color=C.COLOR_SKIP) self._display.display("", screen_only=True) |