-
Notifications
You must be signed in to change notification settings - Fork 324
Bump Groovy: 3.0.25 -> 4.0.29 #9745
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
base: master
Are you sure you want to change the base?
Changes from all commits
3866a54
f128d3c
9dffccd
d88be22
51da522
fb2f81e
af5d06d
765fd92
1ca9595
226a2c5
a429354
ad15665
8fdf26b
e687aa9
6da67dd
69ccd4a
7c04a1c
5b73524
7a0bd21
e863a91
76dcdd8
ca64f39
27c46bc
ba98146
2b04db3
612eae0
0196afe
0cf4bb1
97a76dc
d3d8f43
be3215f
7ebb3db
d03fee4
bf02b3f
9a038e9
7b7df33
e9128d5
f3152e3
df4602c
aa5bcbf
9352e18
aa1c447
d5952a9
c05bf3c
0c6a9a4
4fedc8f
7d882b5
a9856a1
17998ec
6a4b28a
8b8ba20
6d030ce
314ba85
5af7b01
a647df7
7ff5d91
c692c4b
6c13302
d1c1df6
4327f62
31ebf5f
b284f24
b47a10c
ba933b1
925dc31
f5167a7
3345306
2981bdc
e0bf985
5c4823a
15d93d0
adced87
71c1ad1
7fc79c1
a312df4
8985acb
529724f
94a2407
09d4f71
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -310,7 +310,7 @@ public boolean isForceKeep() { | |
| * | ||
| * @return true if root, false otherwise | ||
| */ | ||
| public final boolean isRootSpan() { | ||
| public final boolean checkRootSpan() { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ❔ question: This is a rather important change to the Tracing API. Why change this API for a Groovy upgrade? |
||
| return context.getParentId() == DDSpanId.ZERO; | ||
| } | ||
|
|
||
|
|
@@ -330,7 +330,7 @@ public DDSpan getLocalRootSpan() { | |
| * | ||
| * @return {@literal true} if this span is the same as {@linkplain #getLocalRootSpan()} | ||
| */ | ||
| public boolean isLocalRootSpan() { | ||
| public boolean checkLocalRootSpan() { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ❔ question: Same question here about Tracing API change. |
||
| return getLocalRootSpan().equals(this); | ||
| } | ||
|
|
||
|
|
@@ -382,7 +382,7 @@ private boolean isExceptionReplayEnabled() { | |
| boolean captureOnlyRootSpan = | ||
| (Config.get().isDebuggerExceptionOnlyLocalRoot() | ||
| || !Config.get().isDebuggerExceptionCaptureIntermediateSpansEnabled()); | ||
| if (captureOnlyRootSpan && !isLocalRootSpan()) { | ||
| if (captureOnlyRootSpan && !checkLocalRootSpan()) { | ||
| return false; | ||
| } | ||
| return true; | ||
|
|
||
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.
❔ question: Would you like to address this TODO as part of the PR? Or is it a note for the future?