From a999f4525e1af17323442edee2a4bf99cb410df6 Mon Sep 17 00:00:00 2001 From: Sarvesh Bhatnagar Date: Sun, 27 Jun 2021 17:32:24 +0530 Subject: [PATCH] Python support for OpenWhisk changed. Deploying with previous code results in this error: Failed to deploy function (openwhisk-python-simple-dev-greeting) due to error: PUT https://eu-gb.functions.cloud.ibm.com/api/v1/namespaces/_/actions/openwhisk-python-simple-dev-greeting?overwrite=true Returned HTTP 400 (Bad Request) --> "The 'python' runtime is no longer supported. You may read and delete but not update or invoke this action." --- openwhisk-python-simple/serverless.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openwhisk-python-simple/serverless.yml b/openwhisk-python-simple/serverless.yml index c65530cd0..176ed25c0 100644 --- a/openwhisk-python-simple/serverless.yml +++ b/openwhisk-python-simple/serverless.yml @@ -2,7 +2,7 @@ service: python-service provider: name: openwhisk - runtime: python + runtime: python:3 functions: greeting: