Skip to content

Commit

Permalink
sdk regeneration
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 798d31713c935a602ec5ff7fcbc608d2770d1ca7
  • Loading branch information
philhassey authored and SupportSDM committed Sep 8, 2022
1 parent 225d126 commit 60f425e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sdm/internal/sdk/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import (
const (
defaultAPIHost = "api.strongdm.com:443"
apiVersion = "2021-08-23"
defaultUserAgent = "strongdm-sdk-go/3.2.2"
defaultUserAgent = "strongdm-sdk-go/3.2.3"
)

var _ = metadata.Pairs
Expand Down Expand Up @@ -352,7 +352,7 @@ func (c *Client) shouldRetry(iter int, err error) bool {
}
return true
}
return s.Code() == codes.Internal
return s.Code() == codes.Internal || s.Code() == codes.Unavailable
}
return true
}
2 changes: 1 addition & 1 deletion sdm/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
sdm "github.com/strongdm/terraform-provider-sdm/sdm/internal/sdk"
)

const userAgent = "terraform-provider-sdm/3.2.2"
const userAgent = "terraform-provider-sdm/3.2.3"

// Provider returns a terraform.ResourceProvider.
func Provider() *schema.Provider {
Expand Down

0 comments on commit 60f425e

Please sign in to comment.