-
Notifications
You must be signed in to change notification settings - Fork 14.6k
KAFKA-19666: Remove old restoration codepath from SmokeTestDriverIntegrationTest [3/N] #20465
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: trunk
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR cleans up the SmokeTestDriverIntegrationTest
by removing the state updater configuration parameter from the parameterized test. The change simplifies the test by removing the stateUpdaterEnabled
parameter and its corresponding test cases, reducing the test matrix from 6 combinations to 4.
- Removes
stateUpdaterEnabled
parameter from the parameterized test method - Updates the
@CsvSource
annotation to remove test cases that included the state updater parameter - Removes the
STATE_UPDATER_ENABLED
configuration from the test properties
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
public void shouldWorkWithRebalance( | ||
final boolean stateUpdaterEnabled, | ||
final boolean processingThreadsEnabled, | ||
final boolean streamsProtocolEnabled | ||
) throws InterruptedException { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The method signature and parameter documentation should be updated to reflect the removal of the stateUpdaterEnabled
parameter. Consider updating any existing JavaDoc comments to accurately describe the current test parameters.
Copilot uses AI. Check for mistakes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
clean up
SmokeTestDriverIntegrationTest
Reviewers: Lucas Brutschy [email protected]