Skip to content

Commit 320106c

Browse files
authored
Remove fairness validation (#239)
<!--- Note to EXTERNAL Contributors --> <!-- Thanks for opening a PR! If it is a significant code change, please **make sure there is an open issue** for this. We work best with you when we have accepted the idea first before you code. --> <!--- For ALL Contributors 👇 --> ## What was changed <!-- Describe what has changed in this PR --> Remove fairness validation from ebb and flow scenario. ## Why? <!-- Tell your future self why have you made these changes --> Suspected memory leak. And it's not really used anyway. ## Checklist <!--- add/delete as needed ---> 1. Closes <!-- add issue number here --> 2. How was this tested: <!--- Please describe how you tested your changes/how we can test them --> 3. Any docs updates needed? <!--- update README if applicable or point out where to update docs.temporal.io -->
1 parent 882c07b commit 320106c

File tree

13 files changed

+41
-1123
lines changed

13 files changed

+41
-1123
lines changed

go.mod

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ require (
1111
github.com/spf13/pflag v1.0.5
1212
github.com/stretchr/testify v1.10.0
1313
github.com/temporalio/features v0.0.0-20250808182149-bb2a99cdf200
14-
go.temporal.io/api v1.50.0
15-
go.temporal.io/sdk v1.35.0
14+
go.temporal.io/api v1.53.0
15+
go.temporal.io/sdk v1.37.0
1616
go.uber.org/zap v1.27.0
17-
golang.org/x/exp v0.0.0-20250911091902-df9299821621
1817
golang.org/x/mod v0.28.0
1918
golang.org/x/sync v0.17.0
2019
golang.org/x/sys v0.36.0
21-
google.golang.org/protobuf v1.36.5
20+
google.golang.org/grpc v1.67.1
21+
google.golang.org/protobuf v1.36.6
2222
)
2323

2424
require (
@@ -35,10 +35,10 @@ require (
3535
github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect
3636
github.com/golang/mock v1.6.0 // indirect
3737
github.com/google/go-cmp v0.7.0 // indirect
38-
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
38+
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.2 // indirect
3939
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
4040
github.com/inconshreveable/mousetrap v1.1.0 // indirect
41-
github.com/nexus-rpc/sdk-go v0.3.0 // indirect
41+
github.com/nexus-rpc/sdk-go v0.4.0 // indirect
4242
github.com/pmezard/go-difflib v1.0.0 // indirect
4343
github.com/robfig/cron v1.2.0 // indirect
4444
github.com/stretchr/objx v0.5.2 // indirect
@@ -48,7 +48,6 @@ require (
4848
golang.org/x/time v0.6.0 // indirect
4949
google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed // indirect
5050
google.golang.org/genproto/googleapis/rpc v0.0.0-20240827150818-7e3bb234dfed // indirect
51-
google.golang.org/grpc v1.66.0 // indirect
5251
gopkg.in/yaml.v3 v3.0.1 // indirect
5352
)
5453

go.sum

Lines changed: 12 additions & 88 deletions
Large diffs are not rendered by default.

loadgen/ebbandflow/ebb_and_flow.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,5 @@ type WorkflowOutput struct {
1515
}
1616

1717
type ActivityTiming struct {
18-
FairnessKey string `json:"k"`
19-
FairnessWeight float32 `json:"w"`
2018
ScheduleToStart time.Duration `json:"d"`
2119
}

0 commit comments

Comments
 (0)