Skip to content

Commit c694f7b

Browse files
make tidy
1 parent a384cb5 commit c694f7b

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

pkg/receiver/smartagentreceiver/go.mod

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,22 @@ require (
5959
github.com/apache/thrift v0.22.0 // indirect
6060
github.com/aws/aws-sdk-go-v2 v1.36.3 // indirect
6161
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 // indirect
62+
github.com/aws/aws-sdk-go-v2/config v1.29.14 // indirect
6263
github.com/aws/aws-sdk-go-v2/credentials v1.17.67 // indirect
64+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.30 // indirect
6365
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.16.15 // indirect
6466
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.34 // indirect
6567
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.34 // indirect
68+
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.3 // indirect
6669
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.5 // indirect
6770
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.3 // indirect
6871
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.7 // indirect
6972
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 // indirect
7073
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.5 // indirect
7174
github.com/aws/aws-sdk-go-v2/service/s3 v1.53.1 // indirect
75+
github.com/aws/aws-sdk-go-v2/service/sso v1.25.3 // indirect
76+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.30.1 // indirect
77+
github.com/aws/aws-sdk-go-v2/service/sts v1.33.19 // indirect
7278
github.com/aws/smithy-go v1.22.3 // indirect
7379
github.com/beevik/ntp v1.4.3 // indirect
7480
github.com/cespare/xxhash/v2 v2.3.0 // indirect
@@ -192,7 +198,7 @@ require (
192198
github.com/signalfx/gohistogram v0.0.0-20160107210732-1ccfd2ff5083 // indirect
193199
github.com/signalfx/ingest-protocols v0.2.1 // indirect
194200
github.com/signalfx/sapm-proto v0.12.0 // indirect
195-
github.com/snowflakedb/gosnowflake v1.14.0 // indirect
201+
github.com/snowflakedb/gosnowflake v1.14.1 // indirect
196202
github.com/soniah/gosnmp v0.0.0-20190220004421-68e8beac0db9 // indirect
197203
github.com/spf13/pflag v1.0.6 // indirect
198204
github.com/stretchr/objx v0.5.2 // indirect

pkg/receiver/smartagentreceiver/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -729,8 +729,8 @@ github.com/smartystreets/assertions v1.13.1 h1:Ef7KhSmjZcK6AVf9YbJdvPYG9avaF0Zxu
729729
github.com/smartystreets/assertions v1.13.1/go.mod h1:cXr/IwVfSo/RbCSPhoAPv73p3hlSdrBH/b3SdnW/LMY=
730730
github.com/smartystreets/goconvey v1.8.1 h1:qGjIddxOk4grTu9JPOU31tVfq3cNdBlNa5sSznIX1xY=
731731
github.com/smartystreets/goconvey v1.8.1/go.mod h1:+/u4qLyY6x1jReYOp7GOM2FSt8aP9CzCZL03bI28W60=
732-
github.com/snowflakedb/gosnowflake v1.14.0 h1:lP91Y47ho3dzpTxWr7wjpvDXteh+ZttsLaw1WXzHS34=
733-
github.com/snowflakedb/gosnowflake v1.14.0/go.mod h1:NUxNYUdyPn9sRoYB/udq/fXBXuhLS3SBTPI2/OT79uc=
732+
github.com/snowflakedb/gosnowflake v1.14.1 h1:FnnlaSAm6Zyq3ujqa0JmeU1Ivj7Iz+A0C2YGV6nbRSw=
733+
github.com/snowflakedb/gosnowflake v1.14.1/go.mod h1:+3Eh8swS12G6Fbt/wb5Vcse2Id7VU9HGgKSH8ydiumU=
734734
github.com/soniah/gosnmp v0.0.0-20190220004421-68e8beac0db9 h1:O4jq14rgUwG9Ssn0wZiRPl8Ya6q3a1h3xJzTAsBaRgo=
735735
github.com/soniah/gosnmp v0.0.0-20190220004421-68e8beac0db9/go.mod h1:DuEpAS0az51+DyVBQwITDsoq4++e3LTNckp2GoasF2I=
736736
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=

0 commit comments

Comments
 (0)