Skip to content

Commit 4ef5a12

Browse files
authoredFeb 26, 2025
Merge branch 'master' into enable-cluster-id-test
2 parents 28d453f + a695261 commit 4ef5a12

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+525
-294
lines changed
 

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ SHELL := env PATH='$(PATH)' GOBIN='$(GO_TOOLS_BIN_PATH)' $(shell which bash)
170170

171171
install-tools:
172172
@mkdir -p $(GO_TOOLS_BIN_PATH)
173-
@which golangci-lint >/dev/null 2>&1 || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GO_TOOLS_BIN_PATH) v1.61.0
173+
@which golangci-lint >/dev/null 2>&1 || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GO_TOOLS_BIN_PATH) v1.64.5
174174
@grep '_' tools.go | sed 's/"//g' | awk '{print $$2}' | xargs go install
175175

176176
.PHONY: install-tools

‎client/clients/tso/dispatcher_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ func BenchmarkTSODispatcherHandleRequests(b *testing.B) {
361361
}()
362362

363363
b.ResetTimer()
364-
for i := 0; i < b.N; i++ {
364+
for range b.N {
365365
req := getReq()
366366
dispatcher.push(req)
367367
_, _, err := req.Wait()

0 commit comments

Comments
 (0)