Skip to content

Commit bbe67e9

Browse files
committed
roachtest: fix log file in slow-drain test
The test was looking for a specific log message, which recently moved to the KV distribution channel. This commit points the test to the right log file. Fixes: #154153 Fixes: #154138 Release note: None
1 parent 1c99d43 commit bbe67e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/roachtest/tests/slow_drain.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ func runSlowDrain(ctx context.Context, t test.Test, c cluster.Cluster, duration
134134
testutils.SucceedsWithin(t, func() error {
135135
for nodeID := 2; nodeID <= numNodes; nodeID++ {
136136
if err := c.RunE(ctx, option.WithNodes(c.Node(nodeID)),
137-
fmt.Sprintf("grep -q '%s' logs/cockroach.log", verboseStoreLogRe),
137+
fmt.Sprintf("grep -q '%s' logs/cockroach-kv-distribution.log", verboseStoreLogRe),
138138
); err == nil {
139139
return nil
140140
}

0 commit comments

Comments
 (0)