-
Notifications
You must be signed in to change notification settings - Fork 45
Pin ddtrace to <v4. #563
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
Pin ddtrace to <v4. #563
Conversation
Should this currently pin the version to |
The most recent version of the datadog-lambda-python package now supports v3.0 of ddtrace. I suspect that you were using an older version of datadog-lambda-python that did not yet support v3.0 of ddtrace, which caused your incident. |
d99e491
to
e431231
Compare
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.
LGTM 🚢
e431231
to
4a07c26
Compare
@@ -28,7 +28,7 @@ classifiers = [ | |||
python = ">=3.8.0,<4" | |||
datadog = ">=0.51.0,<1.0.0" | |||
wrapt = "^1.11.2" | |||
ddtrace = ">=2.20.0" | |||
ddtrace = ">=2.20.0,<4" |
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.
Looks like we are covering two major versions here, 2.2 and 3, is this intended?
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.
Yes. For now we are supporting both.
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.
Approving assuming both major versions have been tested by @DataDog/apm-serverless
What does this PR do?
Motivation
Testing Guidelines
Additional Notes
Types of Changes
Check all that apply