Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sentry scope's getUser() function returns a different result than the _user property on the scope itself (scope is out of date or not in sync) #15875

Open
3 tasks done
yashsway opened this issue Mar 27, 2025 · 2 comments
Labels

Comments

@yashsway
Copy link

Is there an existing issue for this?

How do you use Sentry?

Sentry Saas (sentry.io)

Which SDK are you using?

@sentry/react

SDK Version

^9.4.0

Framework Version

^17.0.2

Link to Sentry event

n/a

Reproduction Example/SDK Setup

No response

Steps to Reproduce

  1. Call getCurrentScope().setUser({ name, email }) with some details of the authenticated user like the name and email
  2. Call getCurrentScope() immediately after but elsewhere in the code and inspect the _user property of the entire object. it will be out of date.
  3. Call getCurrentScope().getUser() in the same location - the value will be the most recent value and will conflict with _user from step 2.
  4. Initialize the feedbackIntegration() using useSentryUser set to { name: 'name', email: 'email' }. The default feedback dialog will not pre-populate the name and email fields with those properties from the scope because at time of initialization, they didn't get set.

Expected Result

The scope should update immediately everywhere and the properties on the scope object fetched from using getCurrentScope() should match the result of the getUser() method on the scope object itself.

Actual Result

see results of the following code in the screenshot below:

    const scope = getCurrentScope();

    console.log(scope, scope.getUser());

Image

the feedback integration dialog's input values are empty because of this I think
Image

it's really difficult to debug the feedback integration overall though. and its frustrating that you can't set a fallback value or another value for these inputs in the feedback integration constructor function - you're forced to rely on the scope which sucks.

@getsantry getsantry bot moved this to Waiting for: Product Owner in GitHub Issues with 👀 3 Mar 27, 2025
@github-actions github-actions bot added the Package: react Issues related to the Sentry React SDK label Mar 27, 2025
@s1gr1d
Copy link
Member

s1gr1d commented Mar 28, 2025

Hello and thanks for raising this issue. The feedbackIntegration should use the data set on the scope.

In general, Scope.getUser() returns scope._user. Considering step 2: Does the same happen if you get the user with getUser()?

@getsantry getsantry bot moved this from Waiting for: Product Owner to Waiting for: Community in GitHub Issues with 👀 3 Mar 28, 2025
@s1gr1d
Copy link
Member

s1gr1d commented Mar 28, 2025

Okay I think this is a problem with using the current scope here. As Isolation Scope != Current Scope.

The Feedback Integration docs tell you that you should set the user with Sentry.setUser(). All Sentry.setXYZ() methods are set on the isolation scope (see Scope docs).

The "Current Scope" is very short-lived and is forked very often under the hood. That's why you probably have different data between different scopes. So it's recommended to always use the isolation scope with Sentry.setXYZ() methods.

Here is a graphical representation of what the scope-forking looks like if you want to dig deeper into this topic:

Image

Source: https://develop.sentry.dev/sdk/miscellaneous/hub_and_scope_refactoring/#what-does-the-new-api-look-like

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: Waiting for: Community
Development

No branches or pull requests

2 participants