You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating severless (2.72.x -> 3.33.0) and serverless-offline (9.x -> 12.04) to the latest version my existing CF function doesn't work anymore. I will get [object Object] instead of an expected string[].
Beside my main yml-file I have for each stage another yml-file. Including allowed audiences:
serverless.offline.yml
audiences:
- 'A'
- 'B'
This will be used in the main yml-file:
serverless.yml
Bug Report
After updating severless (2.72.x -> 3.33.0) and serverless-offline (9.x -> 12.04) to the latest version my existing CF function doesn't work anymore. I will get [object Object] instead of an expected string[].
Beside my main yml-file I have for each stage another yml-file. Including allowed audiences:
serverless.offline.yml
This will be used in the main yml-file:
serverless.yml
This works fine for online stages. Before updating it worked for offline as well.
After updating I have to change to:
serverless.yml
But this won't work in online stages.
I want to use CF function even in offline mode, like it was possible in the past.
plugins:
provider:
runtime: nodejs16.x
stage: offline and dev
The text was updated successfully, but these errors were encountered: