1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

Merge pull request #4938 from jakemcdermott/fix-missing-iso

Use summary_fields.controller_id to tell if job is isolated

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2019-10-08 20:18:03 +00:00 committed by GitHub
commit 5ad922a861
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -563,7 +563,7 @@ function getInstanceGroupDetails () {
}
let isolated = null;
if (instanceGroup.is_isolated) {
if (instanceGroup.controller_id) {
isolated = strings.get('details.ISOLATED');
}