-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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 flaky test - increase file lifespan in rotation tests #1384
Fix flaky test - increase file lifespan in rotation tests #1384
Conversation
I retriggered tests hoping to bypass #1380 but we are unfortunately still blocked on this. Otherwise should be good to go. |
@djaglowski please rebase, also remove the skip that I added |
Codecov Report
@@ Coverage Diff @@
## master #1384 +/- ##
=======================================
Coverage 89.88% 89.88%
=======================================
Files 326 326
Lines 16059 16059
=======================================
Hits 14434 14434
Misses 1181 1181
Partials 444 444
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
@bogdandrutu Thanks, should be all set now. |
Thanks for the fix @djaglowski |
)" This reverts commit 68d65d7.
- Removed the draft logsproto and now using the logs Protobufs from official OTLP repo. The rest of the changes are forced by this. - Added InstrumentationLibraryLogs and change the type of LogRecord.Body to AnyValue. - Updated fileexporter and logexporter to use the new log data type.
* Call otel.Handle with non-nil errors That's what normally happens in other call sites. Those two didn't check it, but passed the "error" to Handle. The default, delegating implementation of ErrorHandler was printing the error unconditionally, which resulted in pointless lines like `2020/12/07 19:51:28 <nil>` in demos, for example. * Add tests Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
Addresses #1382