Skip to content

Commit

Permalink
Merge pull request #119 from atomist-skills/fix-urls
Browse files Browse the repository at this point in the history
Fix missing assignment of URLs
  • Loading branch information
cdupuis authored Jun 27, 2024
2 parents 8a37173 + 373e41f commit c9ac7a2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions policy/data/proxy/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ func NewProxyClient(ctx context.Context, graphqlUrl, entitlementsUrl, token, cor
))

return ProxyClient{
httpClient: *httpClient,
correlationId: correlationId,
httpClient: *httpClient,
correlationId: correlationId,
gqlUrl: graphqlUrl,
entitlementsUrl: entitlementsUrl,
}
}

Expand Down

0 comments on commit c9ac7a2

Please sign in to comment.