Skip to content

Commit 2534de1

Browse files
committed
fix(solve the memory buffer to weight problem)
1 parent 8a2d862 commit 2534de1

File tree

9 files changed

+222
-256
lines changed

9 files changed

+222
-256
lines changed

go.mod

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,20 @@
11
module github.com/apache/skywalking-go
22

3-
go 1.24
4-
5-
toolchain go1.24.4
6-
7-
replace (
8-
skywalking.apache.org/repo/goapi => ../skywalking-goapi
9-
)
3+
go 1.19
104

115
require (
12-
github.com/google/uuid v1.6.0
6+
github.com/google/uuid v1.3.0
137
github.com/pkg/errors v0.9.1
14-
github.com/segmentio/kafka-go v0.4.48
158
google.golang.org/grpc v1.73.0
16-
google.golang.org/protobuf v1.36.6
179
skywalking.apache.org/repo/goapi v0.0.0-20230314034821-0c5a44bb767a
1810
)
1911

2012
require (
21-
github.com/cncf/xds/go v0.0.0-20250326154945-ae57f3c0d45f // indirect
22-
github.com/envoyproxy/protoc-gen-validate v1.2.1 // indirect
23-
github.com/klauspost/compress v1.15.9 // indirect
24-
github.com/pierrec/lz4/v4 v4.1.15 // indirect
13+
github.com/golang/protobuf v1.5.3 // indirect
14+
github.com/google/go-cmp v0.5.9 // indirect
2515
golang.org/x/net v0.40.0 // indirect
2616
golang.org/x/sys v0.33.0 // indirect
2717
golang.org/x/text v0.25.0 // indirect
2818
google.golang.org/genproto/googleapis/rpc v0.0.0-20250324211829-b45e905df463 // indirect
19+
google.golang.org/protobuf v1.36.6 // indirect
2920
)

go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.24.4
1+
go 1.19
22

33
use (
44
.

plugins/core/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/apache/skywalking-go/plugins/core
22

3-
go 1.24.4
3+
go 1.19
44

55
replace (
66

0 commit comments

Comments
 (0)