Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modify the mns err info #731

Merged
merged 1 commit into from
Oct 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ IMPROVEMENTS:

BUG FIXES:

- modify the mns err info ([#730](https://github.com/alibaba/terraform-provider/pull/730))
- Close havip sweeper test case ([#729](https://github.com/alibaba/terraform-provider/pull/729))
- Skip havip test case ([#728](https://github.com/alibaba/terraform-provider/pull/728))
- modify the sweeptest nameprefix ([#728](https://github.com/alibaba/terraform-provider/pull/728))
Expand Down
4 changes: 2 additions & 2 deletions alicloud/resource_alicloud_mns_queue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ func testSweepMnsQueues(region string) error {
for _, namePrefix := range prefixes {
for {
var nextMaker string
queueDetails, err1 := queueManager.ListQueueDetail(nextMaker, 1000, namePrefix)
if err1 != nil {
queueDetails, err := queueManager.ListQueueDetail(nextMaker, 1000, namePrefix)
if err != nil {
return fmt.Errorf("get queueDetails error: %#v", err)
}
for _, attr := range queueDetails.Attrs {
Expand Down
4 changes: 2 additions & 2 deletions alicloud/resource_alicloud_mns_topic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ func testSweepMnsTopics(region string) error {
for _, namePrefix := range prefixes {
for {
var nextMaker string
topicDetails, err1 := topicManager.ListTopicDetail(nextMaker, 1000, namePrefix)
if err1 != nil {
topicDetails, err := topicManager.ListTopicDetail(nextMaker, 1000, namePrefix)
if err != nil {
return fmt.Errorf("get topicDetails error: %#v", err)
}
for _, attr := range topicDetails.Attrs {
Expand Down