我尝试从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部分没有更改。