-
Notifications
You must be signed in to change notification settings - Fork 312
Implement Config Inversion with Default Strictness of Warning
#9181
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 45 commits
fd62009
a756eb2
96e2546
6a87970
b062c96
6769bda
06ed2fd
8dd50e0
9660b1a
f8d2a8c
b68f0b2
dc5d83b
fe2eeb9
229c38d
77ddecd
eb6908a
972eef4
81c12f4
98c57b5
990c0ce
5bdd8cf
52c05b4
5192a8a
f128de8
734f9c7
e9ce233
90f536d
7a1517e
5ca61c0
abc0b64
97db41f
04bde01
9a764c9
e10e0a9
340eeef
ea83e25
4b602c1
4bdb960
962490d
c7aa94d
8068724
47a8f6a
94f392c
6c2a551
fe697ff
1aefa7e
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ package datadog.communication.ddagent | |
import datadog.common.container.ContainerInfo | ||
import datadog.communication.monitor.Monitoring | ||
import datadog.trace.test.util.DDSpecification | ||
import datadog.trace.util.Strings | ||
import Strings | ||
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. nitpick: This feels wrong |
||
import okhttp3.Call | ||
import okhttp3.Headers | ||
import okhttp3.HttpUrl | ||
|
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ public final class Constants { | |
"datadog.environment", | ||
"datadog.json", | ||
"datadog.yaml", | ||
"datadog.generator", | ||
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: Is this correct? The generator code shouldn't be packaged, only the generated file which is currently not in this package anyway:
|
||
"datadog.appsec.api", | ||
"datadog.trace.api", | ||
"datadog.trace.bootstrap", | ||
|
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.
thought: Is it needed to move
Strings
?Also, need to check with bootstrap there, as some packages maybe relocated.