MINOR: Streams upgrade system test cleanup#7571
Conversation
|
This is a follow-up PR to perform the same clean-up from #7552 Ran all system tests http://confluent-kafka-branch-builder-system-test-results.s3-us-west-2.amazonaws.com/2019-10-21--001.1571679740--bbejeck--MINOR_clean_up_streams_upgrade_system_test--8e61da4/report.html All tests ran. Note there is one failure, but it' unrelated to these changes. I'm currently investigating the failure. ping @guozhangwang @mjsax |
|
The change lgtm modulo the test failure, ping @mjsax again. |
52a8464 to
e5f5697
Compare
|
Turns out the test failure was related to logging changes in #7537 and I just needed to update the expected log statements. I ran a new branch builder for the failing test
|
|
ping @guozhangwang and @mjsax updated this |
| System.err.println("StreamsUpgradeTest requires two argument (kafka-url, properties-file) but only " + args.length + " provided: " | ||
| + (args.length > 0 ? args[0] : "")); | ||
| if (args.length < 1) { | ||
| System.err.println("StreamsUpgradeTest requires one argument (properties-file) but provided none"); |
| if (args.length < 2) { | ||
| System.err.println("StreamsUpgradeTest requires two argument (kafka-url, properties-file) but only " + args.length + " provided: " | ||
| + (args.length > 0 ? args[0] : "")); | ||
| if (args.length < 1) { |
|
updated with changes from #7586 by @ableegoldman. Re-ran branch builder with 10 repeats and the version probing test passes now |
|
LGTM! Please feel free to merge @bbejeck |
|
Merged #7571 into trunk |
More detailed description of your change,
if necessary. The PR title and PR message become
the squashed commit message, so use a separate
comment to ping reviewers.
Summary of testing strategy (including rationale)
for the feature or bug fix. Unit and/or integration
tests are expected for any behaviour change and
system tests should be considered for larger changes.
Committer Checklist (excluded from commit message)