"DeploymentLimitExceededException" 在 ECS 服务 (AWS) 上
"DeploymentLimitExceededException" on ECS Service (AWS)
我在 ECS
中创建 service
时遇到错误。
正如错误所说,错误发生在CodeDeploy
。
The CodeDeploy deployment was not successful.
CodeDeploy The blue/green deployment was not successfully started
for the service: The Deployment Group 'DgpECS-blogClu-test' already
has an active Deployment 'd-6C9HNEPDA' (Service: AmazonCodeDeploy;
Status Code: 400; Error Code: DeploymentLimitExceededException;
Request ID: 5d4984d5-29fa-4681-97e4-acfa54b55e2b; Proxy: null)
我该如何解决?
转到 CodeDeploy
。然后,检查 Application
处的“Deployment group deployment history
”。
One deployment group
已经 运行ning 所以你得到了错误,因为你不能同时 运行 multiple deployment groups
。
您可以停止它或等待它完成。然后,您可以 运行 another deployment group
.
我在 ECS
中创建 service
时遇到错误。
正如错误所说,错误发生在CodeDeploy
。
The CodeDeploy deployment was not successful.
CodeDeploy The blue/green deployment was not successfully started
for the service: The Deployment Group 'DgpECS-blogClu-test' already
has an active Deployment 'd-6C9HNEPDA' (Service: AmazonCodeDeploy;
Status Code: 400; Error Code: DeploymentLimitExceededException;
Request ID: 5d4984d5-29fa-4681-97e4-acfa54b55e2b; Proxy: null)
我该如何解决?
转到 CodeDeploy
。然后,检查 Application
处的“Deployment group deployment history
”。
One deployment group
已经 运行ning 所以你得到了错误,因为你不能同时 运行 multiple deployment groups
。
您可以停止它或等待它完成。然后,您可以 运行 another deployment group
.