Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update otel core to v0.89.0 #1333

Merged
merged 4 commits into from
Nov 17, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(otelcolbuilder): adjust after API breaking change in otelcol.Coll…
  • Loading branch information
andrzej-stencel committed Nov 17, 2023
commit afe854bc1e5ec3d1d7bfe321dd98459163a6a5bb
5 changes: 1 addition & 4 deletions otelcolbuilder/cmd/collector_config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,17 +97,14 @@ func TestBuiltCollectorWithConfigurationFiles(t *testing.T) {
tc := tc
t.Parallel()

factories, err := components()
require.NoError(t, err)

locations := []string{tc.configFile}
cp, err := NewConfigProvider(locations)
require.NoError(t, err)

t.Log("Creating new app...")
app, err := otelcol.NewCollector(otelcol.CollectorSettings{
BuildInfo: component.NewDefaultBuildInfo(),
Factories: factories,
Factories: components,
ConfigProvider: cp,
})
require.NoError(t, err)
Expand Down