Skip to content

Commit 3f9515d

Browse files
committed
bring weaveworks common with the workers change
Signed-off-by: alanprot <[email protected]>
1 parent d8633ee commit 3f9515d

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

docs/configuration/config-file-reference.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5390,6 +5390,12 @@ grpc_tls_config:
53905390
# CLI flag: -server.grpc-max-concurrent-streams
53915391
[grpc_server_max_concurrent_streams: <int> | default = 100]
53925392
5393+
# Number of worker goroutines that should be used to process incoming
5394+
# streams.Setting this 0 (default) will disable workers and spawn a new
5395+
# goroutine for each stream.
5396+
# CLI flag: -server.grpc_server-num-stream-workers
5397+
[grpc_server_num_stream_workers: <int> | default = 0]
5398+
53935399
# The duration after which an idle connection should be closed. Default:
53945400
# infinity
53955401
# CLI flag: -server.grpc.keepalive.max-connection-idle

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ require (
247247
)
248248

249249
// Using cortex fork of weaveworks/common
250-
replace github.com/weaveworks/common => github.com/cortexproject/weaveworks-common v0.0.0-20241129201713-7fa8414b9abd
250+
replace github.com/weaveworks/common => github.com/cortexproject/weaveworks-common v0.0.0-20241129212437-96019edf21f1
251251

252252
// Override since git.apache.org is down. The docs say to fetch from github.
253253
replace git.apache.org/thrift.git => github.com/apache/thrift v0.0.0-20180902110319-2566ecd5d999

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -939,8 +939,8 @@ github.com/coreos/go-systemd/v22 v22.5.0 h1:RrqgGjYQKalulkV8NGVIfkXQf6YYmOyiJKk8
939939
github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=
940940
github.com/cortexproject/promqlsmith v0.0.0-20241121054008-8b48fe2471ef h1:wR21ZiKkA+wN2KG43qrK33IkFduY9JUa6th6P2KEU0o=
941941
github.com/cortexproject/promqlsmith v0.0.0-20241121054008-8b48fe2471ef/go.mod h1:xbYQa0KX6Eh6YWbTBfZ9kK3N4hRxX+ZPIfVIY2U/y00=
942-
github.com/cortexproject/weaveworks-common v0.0.0-20241129201713-7fa8414b9abd h1:KzVz9O+5/j3ISbIaSiYXtgjzEV0zENBuxZv0bRM2j38=
943-
github.com/cortexproject/weaveworks-common v0.0.0-20241129201713-7fa8414b9abd/go.mod h1:7cl8fS/nivXe2DmBUUmr/3UGTJG2jVU2NRaIayR2Zjs=
942+
github.com/cortexproject/weaveworks-common v0.0.0-20241129212437-96019edf21f1 h1:UoSixdl0sBUhfEOMpIGxFnJjp3/y/+nkw6Du7su05FE=
943+
github.com/cortexproject/weaveworks-common v0.0.0-20241129212437-96019edf21f1/go.mod h1:7cl8fS/nivXe2DmBUUmr/3UGTJG2jVU2NRaIayR2Zjs=
944944
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
945945
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
946946
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=

vendor/github.com/weaveworks/common/server/server.go

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)