Этот коммит содержится в:
Martin Kraft
2022-06-15 12:53:28 -04:00
коммит произвёл GitHub
родитель 4e9edef1f1
Коммит 5b294d079a

Просмотреть файл

@@ -3564,11 +3564,11 @@ func (s *TimerLayerGroupStore) DistinctGroupMemberCount() (int64, error) {
}
func (s *TimerLayerGroupStore) DistinctGroupMemberCountForSource(source model.GroupSource) (int64, error) {
start := timemodule.Now()
start := time.Now()
result, err := s.GroupStore.DistinctGroupMemberCountForSource(source)
elapsed := float64(timemodule.Since(start)) / float64(timemodule.Second)
elapsed := float64(time.Since(start)) / float64(time.Second)
if s.Root.Metrics != nil {
success := "false"
if err == nil {