mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Merge main and fix conflicts
This commit is contained in:
parent
0913f77bdd
commit
0945ef9889
1 changed files with 2 additions and 2 deletions
|
|
@ -3045,11 +3045,11 @@ func (s *DataStore) GenerateHostStatusStatistics(ctx context.Context, filter fle
|
|||
return s.GenerateHostStatusStatisticsFunc(ctx, filter, now, platform, lowDiskSpace)
|
||||
}
|
||||
|
||||
func (s *DataStore) HostIDsByIdentifier(ctx context.Context, filter fleet.TeamFilter, hostIdentifiers []string) ([]uint, error) {
|
||||
func (s *DataStore) HostIDsByIdentifier(ctx context.Context, filter fleet.TeamFilter, hostnames []string) ([]uint, error) {
|
||||
s.mu.Lock()
|
||||
s.HostIDsByIdentifierFuncInvoked = true
|
||||
s.mu.Unlock()
|
||||
return s.HostIDsByIdentifierFunc(ctx, filter, hostIdentifiers)
|
||||
return s.HostIDsByIdentifierFunc(ctx, filter, hostnames)
|
||||
}
|
||||
|
||||
func (s *DataStore) HostIDsByOSID(ctx context.Context, osID uint, offset int, limit int) ([]uint, error) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue