Skip to content

Commit e5d4e3d

Browse files
committed
changefeedccl: fix log location in test
Fix a roachtest failure due to the expected log moving to the new CHANGEFEED log channel. Fixes: #153130 Release note: None
1 parent d94e6a6 commit e5d4e3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/roachtest/tests/cdc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2918,7 +2918,7 @@ func registerCDC(r registry.Registry) {
29182918
logSearchStr := `(client/metadata fetching metadata for|updating kafka metadata for topics|fetching metadata to learn its partitions|waiting for metadata for new topic)`
29192919
results, checkLogsErr := ct.cluster.RunWithDetails(ct.ctx, t.L(),
29202920
option.WithNodes(ct.cluster.Range(1, c.Spec().NodeCount-1)),
2921-
fmt.Sprintf(`grep -E "%s" logs/cockroach.log`, logSearchStr))
2921+
fmt.Sprintf(`grep -E "%s" logs/cockroach-changefeed.log`, logSearchStr))
29222922
if checkLogsErr != nil {
29232923
t.Fatal(checkLogsErr)
29242924
}

0 commit comments

Comments
 (0)