阿里云Serverless中fc 3.0 devs工具好像还有个问题?InvalidArgument: code: 400, Either Code or CustomContainerConfig must be set, but not both request id 。但是配置里面把code去掉又报错:Code config is empty
以下为热心网友提供的参考意见
这个问题可能是由于在配置Code
和CustomContainerConfig
时,两者不能同时设置。你需要检查你的配置文件,确保只设置其中一个参数。
如果你使用的是YAML格式的配置文件,可以尝试以下修改:
custom:
container:
image: your_image_name
cmd: ["your_command"]
args: ["your_args"]
或者,如果你使用的是JSON格式的配置文件,可以尝试以下修改:
{
"custom": {
"container": {
"image": "your_image_name",
"cmd": ["your_command"],
"args": ["your_args"]
}
}
}
请根据你的实际情况修改上述代码中的your_image_name
、your_command
和your_args
。
本文来自投稿,不代表新手站长_郑州云淘科技有限公司立场,如若转载,请注明出处:https://www.cnzhanzhang.com/14645.html