Skip to content

Commit d6393d0

Browse files
committed
fix gql
1 parent c7d3762 commit d6393d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/infrastructure/gateways/identity_api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ type IdentityAPI interface {
2929
// NewIdentityAPIService creates a new instance of IdentityAPI, initializing it with the provided logger, settings, and HTTP client.
3030
// httpClient is used for testing really
3131
func NewIdentityAPIService(logger *zerolog.Logger, settings *config.Settings) IdentityAPI {
32-
httpClient, _ := http.NewClientWrapper("", "", 10*time.Second, nil, true) // ok to ignore err since only used for tor check
32+
httpClient, _ := http.NewClientWrapper(settings.IdentityAPIURL.String(), "", 10*time.Second, nil, true) // ok to ignore err since only used for tor check
3333

3434
return &identityAPIService{
3535
httpClient: httpClient,

0 commit comments

Comments
 (0)