mirror of
https://github.com/mattermost/mattermost.git
synced 2026-08-29 02:28:16 +08:00
523292f081
PR #37646 (Migrate UserStore Get to request context) migrated context.Background() call sites to request.CTX but left the now-dead "context" import in place, assuming other usages in the same files would keep it alive. A concurrently merged sibling PR (#37637, GetAllProfilesInChannel migration) removed those other usages first, so by the time #37646 landed on top of the moved master tip the import had no remaining references, breaking go vet/build on master. Affected: server/channels/store/sqlstore/user_store.go, server/channels/store/storetest/user_store.go, server/channels/store/storetest/mocks/UserStore.go, server/channels/store/localcachelayer/user_layer.go(_test.go), server/channels/app/post_persistent_notification.go Co-authored-by: Claude <noreply@anthropic.com>