We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcdad24 commit 9f3aa1fCopy full SHA for 9f3aa1f
1 file changed
internal/telemetry/client_test.go
@@ -1421,11 +1421,15 @@ func TestSendingFailures(t *testing.T) {
1421
},
1422
}
1423
1424
+ config := defaultConfig(cfg)
1425
+ config.DependencyLoader = nil // prevent AppDependenciesLoaded from joining the flush and creating a MessageBatch
1426
+ config.internalMetricsEnabled = false
1427
+
1428
c, err := newClient(internal.TracerConfig{
1429
Service: "test-service",
1430
Env: "test-env",
1431
Version: "1.0.0",
- }, defaultConfig(cfg))
1432
+ }, config)
1433
1434
require.NoError(t, err)
1435
defer c.Close()
0 commit comments