-
Notifications
You must be signed in to change notification settings - Fork 175
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
New Adapter: Trustedstack #3111
New Adapter: Trustedstack #3111
Conversation
final Bid bid1 = Bid.builder().impid("imp_id").mtype(1).build(); | ||
final Bid bid2 = Bid.builder().impid("imp_id").mtype(2).build(); | ||
final Bid bid3 = Bid.builder().impid("imp_id").mtype(3).build(); | ||
final Bid bid4 = Bid.builder().impid("imp_id").mtype(4).build(); | ||
bids.add(bid1); |
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.
We would prefer to have separate test for each mtype
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.
Done.
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.
@SerhiiNahornyi requesting review as the requested changes has been implemented.
private String resolveEndpoint(String configEndpoint, String externalUrl) { | ||
return configEndpoint.replace(EXTERNAL_URL_MACRO, HttpUtil.encodeUrl(externalUrl)); | ||
} |
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.
URL resolving is usually a part of Bidder code, so please move it there
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.
Done.
@SerhiiNahornyi requesting to share your approval if all looks good |
Trustedstack server adapter added.