We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug 部署本地代码时,控制台报400错误
To Reproduce Steps to reproduce the behavior:
Expected behavior 上传成功
Screenshots If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
配置信息
ROSTemplateFormatVersion: '2015-09-01' Transform: 'Aliyun::Serverless-2018-04-03' Resources: gtx-order: Type: 'Aliyun::Serverless::Service' Properties: InternetAccess: true index: Type: 'Aliyun::Serverless::Function' Properties: Handler: index.handler Runtime: python3 Timeout: 10 MemorySize: 512 InstanceConcurrency: 1 EnvironmentVariables: order_db_host_local: host.docker.internal CodeUri: ./aliyun-serverless Events: router: Type: HTTP Properties: AuthType: anonymous Methods: - GET - POST - PUT - DELETE
The text was updated successfully, but these errors were encountered:
我也遇到过这个问题,是因为python函数不支持单实例并发而引发的错误。 只要删掉 InstanceConcurrency: 1 这行就好了
Sorry, something went wrong.
ChanDaoH
No branches or pull requests
Describe the bug
部署本地代码时,控制台报400错误
To Reproduce
Steps to reproduce the behavior:
Expected behavior
上传成功
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
配置信息
The text was updated successfully, but these errors were encountered: