Skip to content

Commit

Permalink
internal/backend/remote-state/oss: fix dropped error (#30352)
Browse files Browse the repository at this point in the history
  • Loading branch information
alrs committed Apr 1, 2022
1 parent 8d490aa commit 88c9b90
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions internal/backend/remote-state/oss/backend_state.go
Expand Up @@ -85,6 +85,9 @@ func (b *Backend) Workspaces() ([]string, error) {
options = append(options, oss.Marker(lastObj))
}
resp, err = bucket.ListObjects(options...)
if err != nil {
return nil, err
}
} else {
break
}
Expand Down

0 comments on commit 88c9b90

Please sign in to comment.