Skip to content

Commit fbed745

Browse files
fixup! feat(go)!: connection factory replaces server addr options
1 parent a11f838 commit fbed745

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

openfeature-provider/go/confidence/local_resolver_factory.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919

2020
const (
2121
defaultPollIntervalSeconds = 10
22-
confidenceDomain = "edge-grpc.spotify.com"
22+
confidenceDomain = "edge-grpc.spotify.com"
2323
)
2424

2525
// StateProvider is an interface for providing resolver state
@@ -108,7 +108,7 @@ func NewLocalResolverFactory(
108108
authInterceptor := NewJwtAuthInterceptor(tokenHolder)
109109

110110
authConnection, err := factory(ctx, confidenceDomain, append(
111-
append([]grpc.DialOption{}, baseOpts...),
111+
append([]grpc.DialOption{}, baseOpts...),
112112
grpc.WithUnaryInterceptor(authInterceptor.UnaryClientInterceptor()),
113113
))
114114
if err != nil {

0 commit comments

Comments
 (0)