Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/35333-less-heavy-team-get-on-conditional-access
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Use a lighter-weight query for checking if a team is enabled for conditional access.
2 changes: 1 addition & 1 deletion server/service/osquery.go
Original file line number Diff line number Diff line change
Expand Up @@ -2422,7 +2422,7 @@ func (svc *Service) conditionalAccessConfiguredAndEnabledForTeam(ctx context.Con
}

// Host belongs to a team, thus we load the team configuration.
team, err := svc.ds.Team(ctx, *hostTeamID)
team, err := svc.ds.TeamWithoutExtras(ctx, *hostTeamID)
if err != nil {
return false, false, ctxerr.Wrap(ctx, err, "failed to load team config")
}
Expand Down
Loading