Skip to content

Commit b40dcb6

Browse files
committed
Add empty line to readme example
1 parent 903d7c5 commit b40dcb6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def lambda_handler(event, context):
272272
You can now trace Lambda functions using Datadog APM's tracing libraries ([dd-trace-py](https://github.com/DataDog/dd-trace-py)).
273273

274274
1. If you are using the Lambda layer, upgrade it to at least version 15.
275-
1. If you are using the pip package `datadog-lambda-python`, upgrade it to at least version `v0.X.0`.
275+
1. If you are using the pip package `datadog-lambda-python`, upgrade it to at least version `v2.15.0`.
276276
1. Install (or update to) the latest version of [Datadog forwarder Lambda function](https://docs.datadoghq.com/integrations/amazon_web_services/?tab=allpermissions#set-up-the-datadog-lambda-function). Ensure the trace forwarding layer is attached to the forwarder, e.g., ARN for Python 2.7 `arn:aws:lambda:<AWS_REGION>:464622532012:layer:Datadog-Trace-Forwarder-Python27:4`.
277277
1. Set the environment variable `DD_TRACE_ENABLED` to true on your function.
278278
1. Instrument your function using `dd-trace`.
@@ -282,6 +282,7 @@ from datadog_lambda.metric import lambda_metric
282282
from datadog_lambda.wrapper import datadog_lambda_wrapper
283283
284284
from ddtrace import tracer
285+
285286
@datadog_lambda_wrapper
286287
def hello(event, context):
287288
return {

0 commit comments

Comments
 (0)