DEV Community

Discussion on: It’s now even easier to get started with Serverless using the new standalone Apache OpenWhisk!

Collapse
 
liusy58 profile image
liusy58

I followed your steps above but I got the error below:

wsk activation get d01cc7cec9f14ad89cc7cec9f1fad8f3
ok: got activation d01cc7cec9f14ad89cc7cec9f1fad8f3
{
    "namespace": "guest",
    "name": "hello",
    "version": "0.0.1",
    "subject": "guest",
    "activationId": "d01cc7cec9f14ad89cc7cec9f1fad8f3",
    "start": 1629358842856,
    "end": 1629358842856,
    "duration": 0,
    "statusCode": 3,
    "response": {
        "status": "whisk internal error",
        "statusCode": 0,
        "success": false,
        "result": {
            "error": "Failed to provision resources to run the action."
        }
    },
    "logs": [],
    "annotations": [
        {
            "key": "path",
            "value": "guest/hello"
        },
        {
            "key": "waitTime",
            "value": 208986
        },
        {
            "key": "kind",
            "value": "nodejs:10"
        },
        {
            "key": "timeout",
            "value": false
        },
        {
            "key": "limits",
            "value": {
                "concurrency": 1,
                "logs": 10,
                "memory": 256,
                "timeout": 60000
            }
        }
    ],
    "publish": false
}

Enter fullscreen mode Exit fullscreen mode