AWS CloudFormation Stack升级失败,并显示“无法满足100%MinSuccessfulInstancesPercent要求”

时间:2019-12-17 19:04:24

标签: amazon-cloudformation

我尝试从https://github.com/widdix/aws-cf-templates更新现有的jenkins堆栈,并刚刚修改了jenkins rpm和AWS AMI版本。

但是在更新堆栈时,我收到以下错误消息:

public final class User {

    private static final HashMap<String, Integer> names = new HashMap<>();

    public User(String name) {
        int count = names.getOrDefault(name, 0);
        this.name = String.format("%s%02d", name, count);
        names.put(name, count+1);
    }

    private final String name;

    /* ... */

任何人都知道更新可能出了什么问题? 模板的MasterASG部分没有更改。

0 个答案:

没有答案