From 43f509ee456d8b5e60502fba7a445fb535ac0c4c Mon Sep 17 00:00:00 2001 From: MarcelStranak <97876429+MarcelStranak@users.noreply.github.com> Date: Tue, 5 Nov 2024 12:37:11 +0100 Subject: [PATCH 1/3] Add note on debugging limitations for Lambda functions Add note on debugging limitations for Lambda functions --- content/en/user-guide/lambda-tools/debugging/index.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/en/user-guide/lambda-tools/debugging/index.md b/content/en/user-guide/lambda-tools/debugging/index.md index 1eaaa49af9..fac0219f2e 100644 --- a/content/en/user-guide/lambda-tools/debugging/index.md +++ b/content/en/user-guide/lambda-tools/debugging/index.md @@ -23,6 +23,11 @@ More examples and tooling support for local Lambda debugging (including support * [Lambda Debug Mode (preview)](#lambda-debug-mode-preview) * [Resources](#resources) +{{< callout tip >}} +Due to the ports published by the lambda container for the debugger, it is currently only possible to debug one Lambda function at a time. +For complex debugging scenarios that require multiple ports, please consult the [Lambda Debug Mode (preview)]({{< relref "debugging#lambda-debug-mode-preview" >}}) section. +{{< /callout >}} + ## Debugging Python lambdas Lambda functions debugging used to be a difficult task. From dba46004163459233da1ea03b0b46ecdf9f13e1f Mon Sep 17 00:00:00 2001 From: MarcelStranak Date: Wed, 6 Nov 2024 08:12:58 +0100 Subject: [PATCH 2/3] Update content/en/user-guide/lambda-tools/debugging/index.md --- content/en/user-guide/lambda-tools/debugging/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/user-guide/lambda-tools/debugging/index.md b/content/en/user-guide/lambda-tools/debugging/index.md index fac0219f2e..76bd9563e2 100644 --- a/content/en/user-guide/lambda-tools/debugging/index.md +++ b/content/en/user-guide/lambda-tools/debugging/index.md @@ -24,7 +24,7 @@ More examples and tooling support for local Lambda debugging (including support * [Resources](#resources) {{< callout tip >}} -Due to the ports published by the lambda container for the debugger, it is currently only possible to debug one Lambda function at a time. +Due to the ports published by the Lambda container for the debugger, it is currently only possible to debug one Lambda function at a time. For complex debugging scenarios that require multiple ports, please consult the [Lambda Debug Mode (preview)]({{< relref "debugging#lambda-debug-mode-preview" >}}) section. {{< /callout >}} From 75d50cc1a22c9bf5756aebe373d723f123433308 Mon Sep 17 00:00:00 2001 From: MarcelStranak Date: Wed, 6 Nov 2024 12:19:51 +0100 Subject: [PATCH 3/3] Update content/en/user-guide/lambda-tools/debugging/index.md --- content/en/user-guide/lambda-tools/debugging/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/user-guide/lambda-tools/debugging/index.md b/content/en/user-guide/lambda-tools/debugging/index.md index 76bd9563e2..7c4d624d5d 100644 --- a/content/en/user-guide/lambda-tools/debugging/index.md +++ b/content/en/user-guide/lambda-tools/debugging/index.md @@ -25,7 +25,7 @@ More examples and tooling support for local Lambda debugging (including support {{< callout tip >}} Due to the ports published by the Lambda container for the debugger, it is currently only possible to debug one Lambda function at a time. -For complex debugging scenarios that require multiple ports, please consult the [Lambda Debug Mode (preview)]({{< relref "debugging#lambda-debug-mode-preview" >}}) section. +For advanced debugging scenarios, such as those requiring multiple ports, refer to [Lambda Debug Mode (preview)]({{< relref "debugging#lambda-debug-mode-preview" >}}) section. {{< /callout >}} ## Debugging Python lambdas