karthikc (Karthik Chandrasekariah)
- Login: karthikc
- Registered on: 05/17/2025
- Last sign in: 09/20/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 0 | 1 |
Activity
05/22/2025
-
12:03 AM Ruby Bug #21348: Should Tracepoint track retry as another "call" event?
- Thanks for confirming that the behavior needs to be fixed @eregon.
05/17/2025
-
11:10 PM Ruby Bug #21348 (Open): Should Tracepoint track retry as another "call" event?
- When `retry` is executed in a method, Tracepoint records it as a new "call" event.
``` ruby
# tracepoint-retry.rb
# method that retries once
def foo
attempts ||= 1
raise "Fail" if attempts == 1
rescue
attempts += 1
r...