We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f0d882 commit a5a142aCopy full SHA for a5a142a
pkg/connector/api_token.go
@@ -92,6 +92,9 @@ func (o *apiTokenResourceType) List(
92
PerPage: pToken.Size,
93
},
94
})
95
+ if err != nil {
96
+ return nil, "", nil, err
97
+ }
98
99
restApiRateLimit, err := extractRateLimitData(resp)
100
if err != nil {
pkg/connector/org.go
@@ -44,7 +44,6 @@ func organizationResource(
44
parentResourceID *v2.ResourceId,
45
syncSecrets bool,
46
) (*v2.Resource, error) {
47
-
48
annotations := []proto.Message{
49
&v2.ExternalLink{Url: org.GetHTMLURL()},
50
&v2.V1Identifier{Id: fmt.Sprintf("org:%d", org.GetID())},
0 commit comments