-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Prebid 7: Change default bidder access to storage manager #8279
Conversation
src/storageManager.js
Outdated
@@ -31,7 +31,7 @@ export function newStorageManager({gvlid, moduleName, bidderCode, moduleType} = | |||
return false; | |||
} | |||
const storageAllowed = bidderSettings.get(bidderCode, 'storageAllowed'); | |||
return storageAllowed == null ? false : !storageAllowed; | |||
return storageAllowed == null ? true : !storageAllowed; |
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.
@patmmccann This change seems to have no effect on the behaviour of userId modules. Can you please confirm?
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.
confirmed, this is intended to only affect bidders
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.
Thank you!
Will there also be a doc change to section 2.6 of bidderSettings? |
|
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.
looking good!
This changes the default of #7280 as per #7796
It requires that bidders needing access to storage manager are whitelisted in configuration. It does not affect the behavior of other module types.