-
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
iMDS Bid Adapter: support gpp #10150
Conversation
…synacormedia adapter to imds
CAPT-787: Add gpp support to prebid.js imds adapter. Approved-by: Andrew Fuchs
modules/imdsBidAdapter.js
Outdated
const tmax = bidderRequest.timeout; | ||
const callbackTimeout = bidderRequest.timeout; | ||
const globalTimeout = config.getConfig('bidderTimeout'); | ||
const tmax = globalTimeout ? Math.min(globalTimeout, callbackTimeout) : callbackTimeout; |
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.
this is incorrect, just use the value in the request
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.
this is incorrect, just use the value in the request
Okay, I was wondering how #8526 somehow disappeared.
…name of synacormedia adapter to imds" This reverts commit 6619ed9.
* Backport of pull request prebid#8526 that was missing from rename of synacormedia adapter to imds * CAPT-787: Add gpp support to imds adapter. * CAPT-787: Change src= to pbjs/x.y.z to be consistent with prebid-server format. * CAPT-787: Add gppsid parameter to usersync to mirror the prebid-server instance * Revert "Backport of pull request prebid#8526 that was missing from rename of synacormedia adapter to imds" This reverts commit 6619ed9. * CAPT-787: imds adapter: Resolve "undefined" passed in gpp string for usersync --------- Co-authored-by: Timothy M. Ace <tace@imds.tv>
Type of change
Bugfix
Feature
New bidder adapter
Code style update (formatting, local variables)
Refactoring (no functional changes, no api changes)
Build related changes
CI related changes
Does this change affect user-facing APIs or examples documented on http://prebid.org?
Other
Description of change
GPP support is added to the iMDS bid adapter