-
Notifications
You must be signed in to change notification settings - Fork 20
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
🐛 #186: update timeouts per example in time package #187
Conversation
mkrueger12
commented
Mar 22, 2024
- changed defaultTimeout, readTimeout, writeTimeout, and idleTimeout to remove multiplication bug
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #187 +/- ##
========================================
Coverage 66.58% 66.58%
========================================
Files 73 73
Lines 3163 3163
========================================
Hits 2106 2106
Misses 948 948
Partials 109 109 ☔ View full report in Codecov by Sentry. |
This is interesting 👀
|
@roma-glushko I noticed the timeouts we're 10,000,000,000 in the router config. Not sure if that was seconds or ms but the math still doesn't align to 10s |
@mkrueger12 My guess it's really 10s but it's just rendered somewhere in micro or nanoseconds which might be confusing. Can you make me a screenshot where you saw that? |
Okay, I see. Yes, that's just a confusing way to output that value. The value itself should be fine. Here is an example of what I was doing in other places to fix another problem: glide/pkg/routers/retry/config.go Line 8 in f76eb86
|
Gonna close this PR in favour of #202. Thanks! |