diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3ec09359aa..d582d1ff46 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -347,7 +347,7 @@ jobs: ports: - 9200:9200 mattermost-server: - image: mattermost/mm-ee-test:prerelease + image: mattermost/mattermost-cloud:latest env: DB_HOST: postgres DB_PORT_NUMBER: 5432 diff --git a/server/app/playbook_run_service.go b/server/app/playbook_run_service.go index eddac8438a..04626f196a 100644 --- a/server/app/playbook_run_service.go +++ b/server/app/playbook_run_service.go @@ -2257,7 +2257,9 @@ func (s *PlaybookRunServiceImpl) buildTodoDigestMessage(userID string, force boo timezone, err := timeutils.GetUserTimezone(user) if err != nil { - return nil, err + logrus.WithError(err).WithFields(logrus.Fields{ + "user_id": user.Id, + }).Warn("failed to get user timezone") } part2 := buildAssignedTaskMessageSummary(digestMessageItems.assignedRuns, user.Locale, timezone, !force)