Skip to content

Commit dc0e74c

Browse files
authored
Fix python3.6 image debug invokes (#3053)
1 parent 621f42b commit dc0e74c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "Fix image-based Lambda debugging for Python 3.6"
4+
}

jetbrains-core/src/software/aws/toolkits/jetbrains/services/lambda/python/PythonDebugSupport.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class Python36ImageDebugSupport : PythonImageDebugSupport() {
7676
override val id: String = LambdaRuntime.PYTHON3_6.toString()
7777
override fun displayName() = LambdaRuntime.PYTHON3_6.toString().capitalize()
7878
override val pythonPath: String = "/var/lang/bin/python3.6"
79-
override val bootstrapPath: String = "/var/runtime/awslambda/bootstrap.py"
79+
override val bootstrapPath: String = "/var/runtime/bootstrap"
8080
}
8181

8282
class Python37ImageDebugSupport : PythonImageDebugSupport() {

0 commit comments

Comments
 (0)