Fix auth user profile sync - #3
Closed
cursor[bot] wants to merge 1 commit into
Closed
Conversation
Co-authored-by: Vasanth Panuganti <vpanuga2@asu.edu>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bug and impact
Successful Supabase signup/login returned valid auth tokens but did not create or repair the corresponding application
usersrow. New or orphaned authenticated users then hitUSER_NOT_FOUNDon/users/meand foreign-key failures on profile/preferences/meal-log flows.Root cause
AuthServiceonly interacted with Supabase Auth. The Prismauserstable is the parent for all user-scoped app data, but no production auth path inserted or backfilled that row.Fix
syncUserRecordhelper inAuthServicethat upserts the Prisma user row from the Supabase auth user.Validation
pnpm install --frozen-lockfilepnpm --filter @snacktrack/shared-types buildDATABASE_URL=postgresql://localhost:5432/snacktrack_test DIRECT_URL=postgresql://localhost:5432/snacktrack_test pnpm --filter @snacktrack/backend db:generatepnpm --filter @snacktrack/backend test -- auth.test.ts✅DATABASE_URL=postgresql://localhost:5432/snacktrack_test DIRECT_URL=postgresql://localhost:5432/snacktrack_test pnpm --filter @snacktrack/backend build✅pnpm --filter @snacktrack/backend testtests/health.test.tsexpects 200 for all services healthy, but the health route also checks ML service health and that test does not mockmlService.isHealthy(), so it returns 503.