Skip to content

Commit

Permalink
Merge pull request #70 from volcengine/bugfix/vke_default_pool
Browse files Browse the repository at this point in the history
Bugfix/vke default pool
  • Loading branch information
xuyaming0800 authored Mar 6, 2023
2 parents 88a9140 + 3050184 commit 83345f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/common_volcengine_version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package common

const (
TerraformProviderName = "terraform-provider-volcengine"
TerraformProviderVersion = "0.0.59"
TerraformProviderVersion = "0.0.60"
)
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ func (s *VolcengineDefaultNodePoolService) RefreshResourceState(resourceData *sc
}
}
for _, v := range failStates {
for _, v1 := range statuses {
if v == v1 {
for _, status = range statuses {
if v == status {
return nil, "", fmt.Errorf("node status error, status:%s", status.(string))
}
}
Expand Down

0 comments on commit 83345f1

Please sign in to comment.