We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab5107e commit 631d60aCopy full SHA for 631d60a
pkg/kv/kvserver/allocator/mmaprototype/cluster_state_test.go
@@ -436,8 +436,10 @@ func TestClusterState(t *testing.T) {
436
// be in the past, indicating gossip delay. However, having it be
437
// some arbitrary value can be confusing for the test reader.
438
// Consider making it relative to ts.
439
- msg := parseStoreLoadMsg(t, d.Input)
440
- cs.processStoreLoadMsg(context.Background(), &msg)
+ for line := range strings.Lines(d.Input) {
+ msg := parseStoreLoadMsg(t, line)
441
+ cs.processStoreLoadMsg(context.Background(), &msg)
442
+ }
443
return ""
444
445
case "store-leaseholder-msg":
0 commit comments