Skip to content

Commit

Permalink
[mod] go mod fix replaces
Browse files Browse the repository at this point in the history
  • Loading branch information
truthbk committed Sep 5, 2024
1 parent 109f53a commit 916d30e
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 58 deletions.
22 changes: 22 additions & 0 deletions comp/api/authtoken/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,37 @@ module github.com/DataDog/datadog-agent/comp/api/authtoken
go 1.22.0

replace (
github.com/DataDog/datadog-agent/cmd/agent/common/path => ../../../cmd/agent/common/path
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/core/config => ../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/log/def => ../../../comp/core/log/def
github.com/DataDog/datadog-agent/comp/core/log/mock => ../../../comp/core/log/mock
github.com/DataDog/datadog-agent/comp/core/secrets => ../../../comp/core/secrets
github.com/DataDog/datadog-agent/comp/core/telemetry => ../../../comp/core/telemetry
github.com/DataDog/datadog-agent/comp/def => ../../../comp/def
github.com/DataDog/datadog-agent/pkg/api => ../../../pkg/api
github.com/DataDog/datadog-agent/pkg/collector/check/defaults => ../../../pkg/collector/check/defaults
github.com/DataDog/datadog-agent/pkg/config/env => ../../../pkg/config/env
github.com/DataDog/datadog-agent/pkg/config/mock => ../../../pkg/config/mock
github.com/DataDog/datadog-agent/pkg/config/model => ../../../pkg/config/model
github.com/DataDog/datadog-agent/pkg/config/setup => ../../../pkg/config/setup
github.com/DataDog/datadog-agent/pkg/config/utils => ../../../pkg/config/utils
github.com/DataDog/datadog-agent/pkg/util/executable => ../../../pkg/util/executable
github.com/DataDog/datadog-agent/pkg/util/filesystem => ../../../pkg/util/filesystem
github.com/DataDog/datadog-agent/pkg/util/fxutil => ../../../pkg/util/fxutil
github.com/DataDog/datadog-agent/pkg/util/hostname/validate => ../../../pkg/util/hostname/validate/
github.com/DataDog/datadog-agent/pkg/util/log => ../../../pkg/util/log
github.com/DataDog/datadog-agent/pkg/util/log/setup => ../../../pkg/util/log/setup
github.com/DataDog/datadog-agent/pkg/util/optional => ../../../pkg/util/optional
github.com/DataDog/datadog-agent/pkg/util/pointer => ../../../pkg/util/pointer
github.com/DataDog/datadog-agent/pkg/util/scrubber => ../../../pkg/util/scrubber
github.com/DataDog/datadog-agent/pkg/util/system => ../../../pkg/util/system
github.com/DataDog/datadog-agent/pkg/util/system/socket => ../../../pkg/util/system/socket/
github.com/DataDog/datadog-agent/pkg/util/testutil => ../../../pkg/util/testutil
github.com/DataDog/datadog-agent/pkg/util/winutil => ../../../pkg/util/winutil
github.com/DataDog/datadog-agent/pkg/version => ../../../pkg/version
)

require (
Expand Down
44 changes: 0 additions & 44 deletions comp/api/authtoken/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions comp/otelcol/converter/impl/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ replace (
github.com/DataDog/datadog-agent/comp/otelcol/converter/def => ../def
github.com/DataDog/datadog-agent/comp/otelcol/ddflareextension/def => ../../ddflareextension/def/
github.com/DataDog/datadog-agent/comp/otelcol/ddflareextension/impl => ../../ddflareextension/impl/
github.com/DataDog/datadog-agent/pkg/api => ../../../../pkg/api
github.com/DataDog/datadog-agent/pkg/collector/check/defaults => ../../../../pkg/collector/check/defaults
github.com/DataDog/datadog-agent/pkg/config/env => ../../../../pkg/config/env
github.com/DataDog/datadog-agent/pkg/config/mock => ../../../../pkg/config/mock
github.com/DataDog/datadog-agent/pkg/config/model => ../../../../pkg/config/model
github.com/DataDog/datadog-agent/pkg/config/setup => ../../../../pkg/config/setup
github.com/DataDog/datadog-agent/pkg/config/utils => ../../../../pkg/config/utils
github.com/DataDog/datadog-agent/pkg/util/executable => ../../../../pkg/util/executable
github.com/DataDog/datadog-agent/pkg/util/filesystem => ../../../../pkg/util/filesystem
github.com/DataDog/datadog-agent/pkg/util/fxutil => ../../../../pkg/util/fxutil
Expand All @@ -34,6 +36,7 @@ replace (
github.com/DataDog/datadog-agent/pkg/util/system/socket => ../../../../pkg/util/system/socket
github.com/DataDog/datadog-agent/pkg/util/testutil => ../../../../pkg/util/testutil
github.com/DataDog/datadog-agent/pkg/util/winutil => ../../../../pkg/util/winutil
github.com/DataDog/datadog-agent/pkg/version => ../../../../pkg/version
)

require (
Expand Down
6 changes: 0 additions & 6 deletions comp/otelcol/converter/impl/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions comp/otelcol/ddflareextension/impl/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ module github.com/DataDog/datadog-agent/comp/otelcol/ddflareextension/impl
go 1.22.0

replace (
github.com/DataDog/datadog-agent/cmd/agent/common/path => ../../../../cmd/agent/common/path
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../core/config
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../core/flare/builder
Expand All @@ -24,6 +26,7 @@ replace (
github.com/DataDog/datadog-agent/comp/trace/compression/def => ../../../trace/compression/def
github.com/DataDog/datadog-agent/comp/trace/compression/impl-gzip => ../../../trace/compression/impl-gzip
github.com/DataDog/datadog-agent/comp/trace/compression/impl-zstd => ../../../trace/compression/impl-zstd
github.com/DataDog/datadog-agent/pkg/api => ../../../../pkg/api
github.com/DataDog/datadog-agent/pkg/collector/check/defaults => ../../../../pkg/collector/check/defaults
github.com/DataDog/datadog-agent/pkg/config/env => ../../../../pkg/config/env
github.com/DataDog/datadog-agent/pkg/config/mock => ../../../../pkg/config/mock
Expand Down Expand Up @@ -63,6 +66,7 @@ replace (
github.com/DataDog/datadog-agent/pkg/util/statstracker => ../../../../pkg/util/statstracker
github.com/DataDog/datadog-agent/pkg/util/system => ../../../../pkg/util/system
github.com/DataDog/datadog-agent/pkg/util/system/socket => ../../../../pkg/util/system/socket
github.com/DataDog/datadog-agent/pkg/util/testutil => ../../../../pkg/util/testutil
github.com/DataDog/datadog-agent/pkg/util/winutil => ../../../../pkg/util/winutil
github.com/DataDog/datadog-agent/pkg/version => ../../../../pkg/version
)
Expand Down
8 changes: 0 additions & 8 deletions comp/otelcol/ddflareextension/impl/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 916d30e

Please sign in to comment.