-
Notifications
You must be signed in to change notification settings - Fork 835
Connatix: support GPID #4482
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: master
Are you sure you want to change the base?
Connatix: support GPID #4482
Conversation
Code coverage summaryNote:
connatixRefer here for heat map coverage report
|
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.
Consider adding a supplemental test where the gpid is empty, so the expected behavior is documented via the tests.
adapters/connatix/models.go
Outdated
@@ -10,10 +10,12 @@ type adapter struct { | |||
|
|||
type impExtIncoming struct { | |||
Bidder openrtb_ext.ExtImpConnatix `json:"bidder"` | |||
Gpid string `json:"gpid"` |
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.
Nitpick: Per Go naming convention, these should be GPID.
adapters/connatix/models.go
Outdated
} | ||
|
||
type impExt struct { | ||
Connatix impExtConnatix `json:"connatix"` | ||
Gpid string `json:"gpid"` |
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.
Do you want to add omitempty to not output the field when the gpid is empty?
@SyntaxNode thanks, addressed |
Code coverage summaryNote:
connatixRefer here for heat map coverage report
|
This PR includes the
gpid
from the incoming bid request, in the outgoing bid request.Equivalent PR for PBS-JAVA