Merge pull request #13735 from lyft/another-fix-for-supervisord

Fix incorrect already running to already started message check for super...
This commit is contained in:
Thomas S Hatch 2014-06-25 14:39:58 -06:00
commit 317669a531

View File

@ -27,7 +27,7 @@ def _check_error(result, success_message):
ret = {}
if 'ERROR' in result:
if 'already running' in result:
if 'already started' in result:
ret['comment'] = success_message
elif 'not running' in result:
ret['comment'] = success_message