Skip to content

Commit

Permalink
hotfix for resolving issue of backward compatibility of storage type
Browse files Browse the repository at this point in the history
  • Loading branch information
zackliu committed Jun 8, 2017
1 parent 04d7f53 commit 9f2e700
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 9f2e700

Please sign in to comment.