-
-
Notifications
You must be signed in to change notification settings - Fork 446
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
Auto register custom ITransportFactory in Spring integration. #1194
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1194 +/- ##
============================================
+ Coverage 74.70% 74.71% +0.01%
Complexity 1677 1677
============================================
Files 176 176
Lines 5887 5890 +3
Branches 574 574
============================================
+ Hits 4398 4401 +3
Misses 1225 1225
Partials 264 264
Continue to review full report at Codecov.
|
@Test | ||
fun `configures custom TransportFactory`() { | ||
ApplicationContextRunner().withConfiguration(UserConfigurations.of(AppConfigWithCustomTransportFactory::class.java)) | ||
.run { |
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.
This require a note on the docs?
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.
It's included in getsentry/sentry-docs#2833
📜 Description
Auto register custom ITransportFactory in Spring integration.
💡 Motivation and Context
For users who prefer to use Apache Http Client based transport, we have to provide convenient way of registering alternative transport factories.
💚 How did you test it?
Unit test.
📝 Checklist