Skip to content

Commit 2316f52

Browse files
committed
fix rebase conflicts
Signed-off-by: Eliott Bouhana <[email protected]>
1 parent f7fee93 commit 2316f52

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

internal/agent.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ func DefaultDialer(timeout time.Duration) *net.Dialer {
8686
}
8787

8888
func DefaultHTTPClient(timeout time.Duration, disableKeepAlives bool) *http.Client {
89+
//orchestrion:ignore
8990
return &http.Client{
9091
Transport: &http.Transport{
9192
Proxy: http.ProxyFromEnvironment,

openfeature/provider_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ func TestConcurrentEvaluations(t *testing.T) {
575575
func TestSetProviderWithContextAndWaitTimeout(t *testing.T) {
576576
// Create a provider that doesn't have configuration loaded
577577
// This will cause InitWithContext to wait for configuration
578-
provider := newDatadogProvider()
578+
provider := newDatadogProvider(ProviderConfig{})
579579

580580
// Use a very short timeout context (50ms)
581581
ctx, cancel := context.WithTimeout(context.Background(), 50*time.Millisecond)
@@ -599,7 +599,7 @@ func TestSetProviderWithContextAndWaitTimeout(t *testing.T) {
599599

600600
func TestSetProviderWithContextAndWaitSuccess(t *testing.T) {
601601
// Create a provider and set up its configuration immediately
602-
provider := newDatadogProvider()
602+
provider := newDatadogProvider(ProviderConfig{})
603603
config := createTestConfig()
604604
provider.updateConfiguration(config)
605605

@@ -634,7 +634,7 @@ func TestSetProviderWithContextAndWaitSuccess(t *testing.T) {
634634

635635
func TestShutdownWithContextTimeout(t *testing.T) {
636636
// Create and configure a provider
637-
provider := newDatadogProvider()
637+
provider := newDatadogProvider(ProviderConfig{})
638638
config := createTestConfig()
639639
provider.updateConfiguration(config)
640640

@@ -667,7 +667,7 @@ func TestShutdownWithContextTimeout(t *testing.T) {
667667

668668
func TestShutdownWithContextSuccess(t *testing.T) {
669669
// Create and configure a provider
670-
provider := newDatadogProvider()
670+
provider := newDatadogProvider(ProviderConfig{})
671671
config := createTestConfig()
672672
provider.updateConfiguration(config)
673673

0 commit comments

Comments
 (0)