-
Notifications
You must be signed in to change notification settings - Fork 2
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
patch: match parodus' default qos queue behavior #206
patch: match parodus' default qos queue behavior #206
Conversation
denopink
commented
Aug 1, 2024
•
edited
Loading
edited
- disable individual message size validation
- increase the default for max_queue_bytes (required for qa testing)
3681159
to
9ef92bb
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #206 +/- ##
==========================================
+ Coverage 76.94% 77.01% +0.06%
==========================================
Files 75 75
Lines 4550 4550
==========================================
+ Hits 3501 3504 +3
+ Misses 851 848 -3
Partials 198 198
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
9ef92bb
to
ef0190e
Compare
ef0190e
to
37661d5
Compare
@@ -127,8 +127,6 @@ mock_tr_181: | |||
xmidt_agent_crud: | |||
service_name: xmidt_agent | |||
qos: |
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.
disable individual message size validation by removing max_message_bytes
37661d5
to
4f1f3f1
Compare
@@ -127,8 +127,7 @@ mock_tr_181: | |||
xmidt_agent_crud: | |||
service_name: xmidt_agent | |||
qos: | |||
max_queue_bytes: 1048576 # 1 * 1024 * 1024 // 1MB max/queue, | |||
max_message_bytes: 262144 # 256 * 1024 // 256 KB | |||
max_queue_bytes: 104857600 # 100 * 1024 * 1024 // 100MB max/queue, |
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.
increase the default for max_queue_bytes (required for qa testing)
- disable individual message size validation - increase the default for max_queue_bytes (required for qa testing)
4f1f3f1
to
4139f13
Compare