-
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
Always use standard KVP. #262
Conversation
@CarsonBanov |
@mkendall07 Added. I used |
@CarsonBanov I have 2 bidders (1,2) for 1 placement: Bidder 1 always wins but comes in later than bidder 2. Bidder 2 has Want to make sure we are fixing the proper issue. |
Try this:
To show this more clearly:
Now we can try to fix this by including
Does that make sense? I hope I am being clear enough.
|
.cc @mkendall07 |
@CarsonBanov Thanks - very helpful. Will try those scenarios out now. |
I think the assumption was that if your using Changing this line to |
@mkendall07 Thanks so much! Yeah, I'm realizing now that you mention it that this PR will include the standard |
@CarsonBanov Edit: To clarify my point, this simple test case fails with your change: It's failing because the defined bidder setting is using |
I think that would be better. The custom KVP will be set no matter what, but the bid would still be included in the auction. Unfortunately, the "winner of the auction" will set the KVP from the bidder, so if the custom bidder wins, it will just re-set the custom KVP (and never set the For example, this config setup will never set
Instead, we would have to do something like this (duplicately include the
|
Another thing is that the |
I see your what your after, I think it's creating other side affects though, like I pointed out above with using default settings instead of what is configured. We'll need to fix this properly to support all use cases. |
tl;dr
|
@mkendall07 Thanks for the attention. I guess I wonder if an orthogonal solution would be to add a new feature very similar to Anyways, thanks for your help. Feel free to close this and implement whatever fix you feel fit. |
@CarsonBanov |
Following up with #295 |
For: #196
/cc @mkendall07