1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 15:21:13 +03:00

Merge pull request #2714 from ryanpetrello/fix-2643

fail immediately if an isolated host is unreachable at launch time
This commit is contained in:
Ryan Petrello 2018-07-30 14:34:54 -04:00 committed by GitHub
commit a3040d60d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -491,8 +491,5 @@ class IsolatedManager(object):
status, rc = self.dispatch()
if status == 'successful':
status, rc = self.check()
else:
# If dispatch fails, attempt to consume artifacts that *might* exist
self.check()
self.cleanup()
return status, rc