Skip to content

Commit

Permalink
Merge pull request #52 from zackliu/hotfix
Browse files Browse the repository at this point in the history
hotfix for resolving issue of backward compatibility of storage type [JENKINS-44750]
  • Loading branch information
zackliu committed Jun 8, 2017
2 parents 04d7f53 + 9f2e700 commit 01288f9
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -238,6 +238,10 @@ public String isType(final String type) {

private Object readResolve() {
labelDataSet = Label.parse(labels);

if (StringUtils.isBlank(storageAccountType)) {
storageAccountType = SkuName.STANDARD_LRS.toString();
}
return this;
}

Expand Down

0 comments on commit 01288f9

Please sign in to comment.