-
-
Notifications
You must be signed in to change notification settings - Fork 494
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
Reset trace and transaction for sidekiq-cron #2446
Reset trace and transaction for sidekiq-cron #2446
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2446 +/- ##
==========================================
- Coverage 98.16% 98.13% -0.04%
==========================================
Files 126 126
Lines 4741 4761 +20
==========================================
+ Hits 4654 4672 +18
- Misses 87 89 +2
|
8754868
to
1fe8563
Compare
@solnic Any ideas or input for the if Version >= 2
def enqueue!
...
end
else
def enque!
...
end
end with the exact same content of the two methods. |
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.
Some small things to improve/simplify :)
Remove unneeded exception alloc Set root op instead of nested spans Initial commit Add a spec This is ugly - Want input Inline allocation Inline more Add changelog entry Feedback on PR
f8243d7
to
f9bce57
Compare
Replied to some, and adjusted for others! @solnic |
@solnic That's weird... Let me just validate tomorrow, and see what might go wrong. |
@solnic Are you on latest commit? I've just tried this here, and my cron jobs look like this (Just from the I'm not sure how to proceed debugging here. |
OK I tried again and I no longer see this issue! 🎉 |
Description
Adds a new transaciton and reset for Sidekiq cron #enque!, so that they are not forever-running traces in the web view.
Depends on #2403.Fixes #2391