Skip to content

Commit 63742b4

Browse files
committed
Review comments.
Signed-off-by: Steve Simpson <[email protected]>
1 parent 47cf843 commit 63742b4

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
* [CHANGE] Memberlist: Expose default configuration values to the command line options. Note that setting these explicitly to zero will no longer cause the default to be used. If the default is desired, then do set the option. The folowing are affected: #4276
2222
- `-memberlist.stream-timeout`
2323
- `-memberlist.retransmit-factor`
24-
- `-memberlist.pull_push_interval`
25-
- `-memberlist.gossip_interval`
26-
- `-memberlist.gossip_nodes`
27-
- `-memberlist.gossip_to_dead_nodes_time`
24+
- `-memberlist.pull-push-interval`
25+
- `-memberlist.gossip-interval`
26+
- `-memberlist.gossip-nodes`
27+
- `-memberlist.gossip-to-dead-nodes-time`
2828
* [FEATURE] Querier: Added new `-querier.max-fetched-series-per-query` flag. When Cortex is running with blocks storage, the max series per query limit is enforced in the querier and applies to unique series received from ingesters and store-gateway (long-term storage). #4179
2929
* [FEATURE] Querier/Ruler: Added new `-querier.max-fetched-chunk-bytes-per-query` flag. When Cortex is running with blocks storage, the max chunk bytes limit is enforced in the querier and ruler and limits the size of all aggregated chunks returned from ingesters and storage as bytes for a query. #4216
3030
* [FEATURE] Alertmanager: support negative matchers, time-based muting - [upstream release notes](https://github.com/prometheus/alertmanager/releases/tag/v0.22.0). #4237

pkg/ring/kv/memberlist/memberlist_client_test.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -506,14 +506,9 @@ func TestMultipleClients(t *testing.T) {
506506
flagext.DefaultValues(&cfg)
507507
cfg.NodeName = id
508508

509-
// some useful parameters when playing with higher number of members
510-
// cfg.RetransmitMult = 2
511509
cfg.GossipInterval = 100 * time.Millisecond
512510
cfg.GossipNodes = 3
513511
cfg.PushPullInterval = 5 * time.Second
514-
// cfg.PacketDialTimeout = 5 * time.Second
515-
// cfg.StreamTimeout = 5 * time.Second
516-
// cfg.PacketWriteTimeout = 2 * time.Second
517512

518513
cfg.TCPTransport = TCPTransportConfig{
519514
BindAddrs: []string{"localhost"},

0 commit comments

Comments
 (0)