File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
tests/flagd/testframework Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 33package e2e
44
55import (
6+ flagd "github.com/open-feature/go-sdk-contrib/providers/flagd/pkg"
67 "testing"
78
89 "github.com/open-feature/go-sdk-contrib/tests/flagd/testframework"
@@ -17,6 +18,9 @@ func TestInProcessProviderE2E(t *testing.T) {
1718 runner := testframework .NewTestbedRunner (testframework.TestbedConfig {
1819 ResolverType : testframework .InProcess ,
1920 TestbedConfig : "default" ,
21+ ExtraOptions : []flagd.ProviderOption {
22+ flagd .WithRetryBackoffMaxMs (5000 ),
23+ },
2024 })
2125 defer runner .Cleanup ()
2226
Original file line number Diff line number Diff line change @@ -188,7 +188,6 @@ func (s *TestState) configureUnavailableProvider() error {
188188func (s * TestState ) configureForbiddenProvider () error {
189189 // Set an Envoy port which always responds with forbidden
190190 s .addProviderOption ("port" , "Integer" , "9212" )
191- s .addProviderOption ("retryBackoffMaxMs" , "Integer" , "3000" ) // Shorter backoff for testing
192191 return nil
193192}
194193
You can’t perform that action at this time.
0 commit comments