Skip to content

Commit 1939eca

Browse files
yycpttwxing1292
authored andcommitted
Handle max signal count limit for signal transfer task (#4051)
1 parent 669e488 commit 1939eca

File tree

7 files changed

+531
-223
lines changed

7 files changed

+531
-223
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[submodule "proto/api"]
22
path = proto/api
33
url = https://github.com/temporalio/api
4-
branch = master
4+
branch = release/v1.20.x
55
[submodule "develop/docker-compose/grafana/provisioning/temporalio-dashboards"]
66
path = develop/docker-compose/grafana/provisioning/temporalio-dashboards
77
url = https://github.com/temporalio/dashboards

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ proto-mocks: $(PROTO_OUT)
183183
$(NEWLINE))
184184

185185
update-go-api:
186-
@printf $(COLOR) "Update go.temporal.io/api@master..."
187-
@go get -u go.temporal.io/api@master
186+
@printf $(COLOR) "Update go.temporal.io/api@f2c7ab685b44970d22c2a8cee3d91799dd1ccd17..."
187+
@go get -u go.temporal.io/api@f2c7ab685b44970d22c2a8cee3d91799dd1ccd17
188188

189189
goimports-proto:
190190
@printf $(COLOR) "Run goimports for proto files..."

go.mod

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module go.temporal.io/server
33
go 1.19
44

55
require (
6-
cloud.google.com/go/storage v1.28.0
6+
cloud.google.com/go/storage v1.29.0
77
github.com/aws/aws-sdk-go v1.44.151
88
github.com/blang/semver/v4 v4.0.0
99
github.com/brianvoe/gofakeit/v6 v6.19.0
@@ -28,7 +28,7 @@ require (
2828
github.com/pborman/uuid v1.2.1
2929
github.com/prometheus/client_golang v1.14.0
3030
github.com/robfig/cron/v3 v3.0.1
31-
github.com/stretchr/testify v1.8.1
31+
github.com/stretchr/testify v1.8.2
3232
github.com/temporalio/ringpop-go v0.0.0-20220818230611-30bf23b490b2
3333
github.com/temporalio/tchannel-go v1.22.1-0.20220818200552-1be8d8cffa5b
3434
github.com/temporalio/tctl-kit v0.0.0-20221128225502-a682971cf481
@@ -44,18 +44,18 @@ require (
4444
go.opentelemetry.io/otel/metric v0.34.0
4545
go.opentelemetry.io/otel/sdk v1.11.2
4646
go.opentelemetry.io/otel/sdk/metric v0.34.0
47-
go.temporal.io/api v1.18.1
47+
go.temporal.io/api v1.18.2-0.20230324225508-f2c7ab685b44
4848
go.temporal.io/sdk v1.21.1
4949
go.temporal.io/version v0.3.0
5050
go.uber.org/atomic v1.10.0
5151
go.uber.org/fx v1.18.2
5252
go.uber.org/multierr v1.8.0
5353
go.uber.org/zap v1.24.0
5454
golang.org/x/exp v0.0.0-20221126150942-6ab00d035af9
55-
golang.org/x/oauth2 v0.4.0
56-
golang.org/x/time v0.2.0
57-
google.golang.org/api v0.103.0
58-
google.golang.org/grpc v1.53.0
55+
golang.org/x/oauth2 v0.6.0
56+
golang.org/x/time v0.3.0
57+
google.golang.org/api v0.114.0
58+
google.golang.org/grpc v1.54.0
5959
google.golang.org/grpc/examples v0.0.0-20221201195934-736197138d20
6060
gopkg.in/square/go-jose.v2 v2.6.0
6161
gopkg.in/validator.v2 v2.0.1
@@ -64,10 +64,10 @@ require (
6464
)
6565

6666
require (
67-
cloud.google.com/go v0.107.0 // indirect
68-
cloud.google.com/go/compute v1.15.1 // indirect
67+
cloud.google.com/go v0.110.0 // indirect
68+
cloud.google.com/go/compute v1.19.0 // indirect
6969
cloud.google.com/go/compute/metadata v0.2.3 // indirect
70-
cloud.google.com/go/iam v0.8.0 // indirect
70+
cloud.google.com/go/iam v0.13.0 // indirect
7171
github.com/apache/thrift v0.17.0 // indirect
7272
github.com/benbjohnson/clock v1.3.0 // indirect
7373
github.com/beorn7/perks v1.0.1 // indirect
@@ -81,10 +81,10 @@ require (
8181
github.com/go-logr/stdr v1.2.2 // indirect
8282
github.com/gogo/googleapis v1.4.1 // indirect
8383
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
84-
github.com/golang/protobuf v1.5.2 // indirect
84+
github.com/golang/protobuf v1.5.3 // indirect
8585
github.com/golang/snappy v0.0.4 // indirect
86-
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
87-
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
86+
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
87+
github.com/googleapis/gax-go/v2 v2.7.1 // indirect
8888
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
8989
github.com/grpc-ecosystem/grpc-gateway/v2 v2.14.0 // indirect
9090
github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed // indirect
@@ -120,15 +120,15 @@ require (
120120
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
121121
go.uber.org/dig v1.15.0 // indirect
122122
golang.org/x/crypto v0.3.0 // indirect
123-
golang.org/x/mod v0.7.0 // indirect
124-
golang.org/x/net v0.7.0 // indirect
125-
golang.org/x/sys v0.5.0 // indirect
126-
golang.org/x/text v0.7.0 // indirect
127-
golang.org/x/tools v0.3.0 // indirect
123+
golang.org/x/mod v0.8.0 // indirect
124+
golang.org/x/net v0.8.0 // indirect
125+
golang.org/x/sys v0.6.0 // indirect
126+
golang.org/x/text v0.8.0 // indirect
127+
golang.org/x/tools v0.6.0 // indirect
128128
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
129129
google.golang.org/appengine v1.6.7 // indirect
130-
google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc // indirect
131-
google.golang.org/protobuf v1.28.1 // indirect
130+
google.golang.org/genproto v0.0.0-20230323212658-478b75c54725 // indirect
131+
google.golang.org/protobuf v1.30.0 // indirect
132132
gopkg.in/inf.v0 v0.9.1 // indirect
133133
lukechampine.com/uint128 v1.2.0 // indirect
134134
modernc.org/cc/v3 v3.40.0 // indirect

0 commit comments

Comments
 (0)