Skip to content

Commit f1054db

Browse files
committed
fix integration client vendor
Signed-off-by: Michael Crosby <[email protected]>
1 parent e48bbe8 commit f1054db

3 files changed

Lines changed: 3 additions & 12 deletions

File tree

integration/client/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require (
1818
github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417
1919
github.com/pkg/errors v0.9.1
2020
github.com/sirupsen/logrus v1.8.1
21-
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c
21+
golang.org/x/sys v0.0.0-20210915083310-ed5796bab164
2222
gotest.tools/v3 v3.0.3
2323
)
2424

integration/client/go.sum

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,8 +711,9 @@ golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7w
711711
golang.org/x/sys v0.0.0-20210426230700-d19ff857e887/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
712712
golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
713713
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
714-
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c h1:F1jZWGFhYfh0Ci55sIpILtKKK8p3i2/krTr0H1rg74I=
715714
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
715+
golang.org/x/sys v0.0.0-20210915083310-ed5796bab164 h1:7ZDGnxgHAMw7thfC5bEos0RDAccZKxioiWBhfIe+tvw=
716+
golang.org/x/sys v0.0.0-20210915083310-ed5796bab164/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
716717
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
717718
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
718719
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=

services/server/config/config.go

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ type Config struct {
6767
Timeouts map[string]string `toml:"timeouts"`
6868
// Imports are additional file path list to config files that can overwrite main config file fields
6969
Imports []string `toml:"imports"`
70-
// OpenTelemetry configuration
71-
OpenTelemetry OpenTelemetryConfig `toml:"otel"`
7270
// StreamProcessors configuration
7371
StreamProcessors map[string]StreamProcessor `toml:"stream_processors"`
7472
}
@@ -167,14 +165,6 @@ type ProxyPlugin struct {
167165
Address string `toml:"address"`
168166
}
169167

170-
// OpenTelemetryConfig provides open telemetry configuration
171-
type OpenTelemetryConfig struct {
172-
ServiceName string `toml:"service_name"`
173-
ExporterName string `toml:"exporter_name"`
174-
ExporterEndpoint string `toml:"exporter_endpoint"`
175-
TraceSamplingRatio float64 `toml:"trace_sampling_ratio"`
176-
}
177-
178168
// BoltConfig defines the configuration values for the bolt plugin, which is
179169
// loaded here, rather than back registered in the metadata package.
180170
type BoltConfig struct {

0 commit comments

Comments
 (0)