Skip to content

Commit

Permalink
[SECURITY_SOLUTION] fix unenrolled query (#74798)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlog committed Aug 12, 2020
1 parent ed69f9b commit 7f33e72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export async function findAllUnenrolledAgentIds(
perPage: pageSize,
showInactive: true,
kuery:
'(fleet-agents.packages : "endpoint" AND fleet-agents.active : false) OR (NOT fleet-agents.packages : "endpoint" AND fleet-agents.active : true)',
'(fleet-agents.active : false) OR (NOT fleet-agents.packages : "endpoint" AND fleet-agents.active : true)',
};
};

Expand Down

0 comments on commit 7f33e72

Please sign in to comment.