-
-
Notifications
You must be signed in to change notification settings - Fork 451
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
Fix SentryUserFilter
in spring
and spring-jakarta
samples
#4316
base: main
Are you sure you want to change the base?
Conversation
Performance metrics 🚀
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While this should work, it sounds like a bug if the bean can't be found. We should investigate that.
I've changed this to use private void registerSentryHubBean(final @NotNull BeanDefinitionRegistry registry) {
final BeanDefinitionBuilder builder =
BeanDefinitionBuilder.genericBeanDefinition(ScopesAdapter.class);
builder.setInitMethodName("getInstance");
registry.registerBeanDefinition("sentryHub", builder.getBeanDefinition());
} So using something like |
📜 Description
Previously this was
This didn't register the bean because "Could not autowire. No beans of 'IScopes' type found. ".
This seems to work, not sure if it's the correct approach.
#skip-changelog