-
Notifications
You must be signed in to change notification settings - Fork 317
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
chore: send multiple reports in a single request to reporting #5264
base: master
Are you sure you want to change the base?
Conversation
enterprise/reporting/reporting.go
Outdated
@@ -88,6 +89,7 @@ func NewDefaultReporter(ctx context.Context, log logger.Logger, configSubscriber | |||
maxConcurrentRequests := config.GetReloadableIntVar(32, 1, "Reporting.maxConcurrentRequests") | |||
maxOpenConnections := config.GetIntVar(32, 1, "Reporting.maxOpenConnections") | |||
dbQueryTimeout = config.GetReloadableDurationVar(60, time.Second, "Reporting.dbQueryTimeout") | |||
maxReportsCountInARequest := config.GetReloadableIntVar(1, 1, "Reporting.maxReportsCountInARequest") |
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.
lets keep 10 as default value?
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #5264 +/- ##
==========================================
- Coverage 73.20% 73.19% -0.02%
==========================================
Files 424 424
Lines 59946 59949 +3
==========================================
- Hits 43885 43879 -6
- Misses 13602 13606 +4
- Partials 2459 2464 +5 ☔ View full report in Codecov by Sentry. |
Description
Send multiple reports in a single request to reporting
Linear Ticket
Security