Skip to content

Commit 26d320e

Browse files
dantecatalfamogeorgekarrv
authored andcommitted
Allow EnrollmentState to be in status '3' for MDM clients (#17868)
#17692 Recently there was a change that filtered out hosts in `EnrollmentState` 3. This change may cause some hosts that are in otherwise good health to appear unresponsive to MDM in the management UI. This change will allow hosts with `EnrollmentStatus` 3 show as enrolled. The root cause of some hosts being in state 3 is still not entirely clear, but may have to do with either trying to re-enroll once already enrolled, or windows updates causing some sort of issue with fleet. Despite the "failed" `EnrollmentState` 3, the host will still display that the system is managed by Fleet, and will actively sync.
1 parent fd71574 commit 26d320e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

changes/17692-enrollment-state-3.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Fix a bug where valid MDM enrollments would show up as unmanaged (EnrollmentState 3)

server/service/osquery_utils/queries.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ var extraDetailQueries = map[string]DetailQuery{
496496
-- coalesce to 'unknown' and keep that state in the list
497497
-- in order to account for hosts that might not have this
498498
-- key, and servers
499-
WHERE COALESCE(e.state, '0') IN ('0', '1', '2')
499+
WHERE COALESCE(e.state, '0') IN ('0', '1', '2', '3')
500500
LIMIT 1;
501501
`,
502502
DirectIngestFunc: directIngestMDMWindows,

0 commit comments

Comments
 (0)