Skip to content
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

Update feature flag handling for required features #614

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

annaibm
Copy link
Contributor

@annaibm annaibm commented Sep 20, 2024

  • Removed null statement from required feature check to ensure all required features are processed.
  • Allows the code to continue checking all feature flags, even after finding a required flag in testFlags.

related:https://github.ibm.com/runtimes/backlog/issues/1525

- Removed `null` statement from `required` feature check to ensure all required features are processed.
- Allows the code to continue checking all feature flags, even after finding a required flag in `testFlags`.

related:https://github.ibm.com/runtimes/backlog/issues/1525

Signed-off-by: Anna Babu Palathingal <anna.bp@ibm.com>
if (!isFeatureInTestFlags(testFlags, entry.getKey())) {
return null;
if (isFeatureInTestFlags(testFlags, entry.getKey())) {
break;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With this change, if there is no test flag and feature match, the test will run. This is not expected behavior.
Grinder - test run with TEST_FLAG=empty.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants