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

fix: configuration shouldn't check for enabled if audit is enabledByDefault #675

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

rpapani
Copy link
Contributor

@rpapani rpapani commented Apr 1, 2025

When the audit is enabled by default, Configuration.isHandlerEnabledForSite is checking if the configuration has enabled property, then checking in that list. If the audit is enabled by default, we shouldn't be checking the enabled list.

Fixes SITES-30390

Copy link
Member

@solaris007 solaris007 left a comment

Choose a reason for hiding this comment

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

LGTM

if (handler.disabled) {
const sites = handler.disabled.sites || [];
const orgs = handler.disabled.orgs || [];
if (sites.includes(siteId) || orgs.includes(orgId)) {
Copy link
Member

@solaris007 solaris007 Apr 1, 2025

Choose a reason for hiding this comment

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

this should be a direct return

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@solaris007
If we return directly, like earlier

return !(sites.includes(siteId) || orgs.includes(orgId));

we'll be returning just based on disabled only. If the site isn't disabled, or disabled is empty, we'll end up returning true. That's why I'm explicitly returning only if its specifically disabled or enabled or enabledByDefault.

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