From cb5b1178d57684e056a4ac6c19a65426e52feece Mon Sep 17 00:00:00 2001 From: Varad Meru Date: Fri, 14 Mar 2025 22:06:39 -0500 Subject: [PATCH 1/2] Update worker.config.json to remove debug carets --- python/prodV4/worker.config.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/prodV4/worker.config.json b/python/prodV4/worker.config.json index 548822af..3e431ac4 100644 --- a/python/prodV4/worker.config.json +++ b/python/prodV4/worker.config.json @@ -8,10 +8,11 @@ "extensions":[".py"], "defaultExecutablePath":"python", "defaultWorkerPath":"%FUNCTIONS_WORKER_RUNTIME_VERSION%/{os}/{architecture}/worker.py", - "workerIndexing": "true" + "workerIndexing": "true", + "arguments": ["-X no_debug_ranges"] }, "processOptions": { "initializationTimeout": "00:02:00", "environmentReloadTimeout": "00:02:00" } -} \ No newline at end of file +} From 47cd54eed5496fae0b7b91768247c25f4c72ac96 Mon Sep 17 00:00:00 2001 From: Varad Meru Date: Mon, 24 Mar 2025 09:27:06 -0700 Subject: [PATCH 2/2] Update test/worker.config.json as well. --- python/test/worker.config.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/test/worker.config.json b/python/test/worker.config.json index a0b0ad3f..f778e45f 100644 --- a/python/test/worker.config.json +++ b/python/test/worker.config.json @@ -4,10 +4,11 @@ "extensions":[".py"], "defaultExecutablePath":"python", "defaultWorkerPath":"worker.py", - "workerIndexing": "true" + "workerIndexing": "true", + "arguments": ["-X no_debug_ranges"] }, "processOptions": { "initializationTimeout": "00:02:00", "environmentReloadTimeout": "00:02:00" } -} \ No newline at end of file +}