NIFI-9025 Fixed reference in TestTailFile unit test

This closes #5294

Signed-off-by: Joey Frazee <jfrazee@apache.org>
This commit is contained in:
Paul Grey 2021-08-07 15:54:25 -04:00 committed by Joey Frazee
parent bf52973d62
commit 0a827d6cd7
1 changed files with 1 additions and 1 deletions

View File

@ -848,7 +848,7 @@ public class TestTailFile {
}
private void testMultiLineWaitsForRegexMatch(final boolean shutdownBetweenReads) throws IOException {
runner.setProperty(TailFile.LINE_START_REGEX, "<\\d>");
runner.setProperty(TailFile.LINE_START_PATTERN, "<\\d>");
runner.setProperty(TailFile.ROLLING_FILENAME_PATTERN, "log.*");
final String line1 = "<1>Hello, World\n";