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

Remove unused dependencies #30038

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
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
3 changes: 0 additions & 3 deletions comp/core/autodiscovery/autodiscoveryimpl/autoconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import (
"github.com/DataDog/datadog-agent/comp/core/autodiscovery/scheduler"
autodiscoveryStatus "github.com/DataDog/datadog-agent/comp/core/autodiscovery/status"
acTelemetry "github.com/DataDog/datadog-agent/comp/core/autodiscovery/telemetry"
configComponent "github.com/DataDog/datadog-agent/comp/core/config"
flaretypes "github.com/DataDog/datadog-agent/comp/core/flare/types"
logComp "github.com/DataDog/datadog-agent/comp/core/log/def"
"github.com/DataDog/datadog-agent/comp/core/secrets"
Expand All @@ -54,7 +53,6 @@ var listenerCandidateIntl = 30 * time.Second
type dependencies struct {
fx.In
Lc fx.Lifecycle
Config configComponent.Component
Log logComp.Component
TaggerComp tagger.Component
Secrets secrets.Component
Expand Down Expand Up @@ -733,7 +731,6 @@ func configType(c integration.Config) string {
type optionalModuleDeps struct {
fx.In
Lc fx.Lifecycle
Config configComponent.Component
Log logComp.Component
TaggerComp optional.Option[tagger.Component]
Secrets secrets.Component
Expand Down
Loading