-
Notifications
You must be signed in to change notification settings - Fork 748
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: Change imds/synacormedia adapter hostname to be static #2793
Conversation
…adapter version to endpoint URL.
@@ -1,5 +1,5 @@ | |||
# DEPRECATED: Use imds bidder instead | |||
endpoint: "http://{{.Host}}.technoratimedia.com/openrtb/bids/{{.Host}}" | |||
endpoint: "https://pbs.technoratimedia.com/openrtb/bids/{{.AccountID}}?src={{.SourceId}}&adapter=synacormedia" |
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.
domain pbs.technoratimedia.com
is not reachable
~ » ping pbs.technoratimedia.com oh0387@15852-p-mac
PING adserver.technoratimedia.com (150.136.26.45): 56 data bytes
Request timeout for icmp_seq 0
Request timeout for icmp_seq 1
Request timeout for icmp_seq 2
^C
--- adserver.technoratimedia.com ping statistics ---
4 packets transmitted, 0 packets received, 100.0% packet loss
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.
domain
pbs.technoratimedia.com
is not reachable~ » ping pbs.technoratimedia.com oh0387@15852-p-mac PING adserver.technoratimedia.com (150.136.26.45): 56 data bytes Request timeout for icmp_seq 0 Request timeout for icmp_seq 1 Request timeout for icmp_seq 2 ^C --- adserver.technoratimedia.com ping statistics --- 4 packets transmitted, 0 packets received, 100.0% packet loss
Our servers do not respond to ICMP ping requests. If you issue an HTTP or HTTPS request, it responds:
% curl -i 'http://pbs.technoratimedia.com/'
HTTP/1.1 404 Not Found
Server: nginx
Date: Mon, 22 May 2023 13:19:23 GMT
Content-Length: 0
Connection: keep-alive
access-control-allow-origin: *
access-control-allow-methods: POST,GET,HEAD,OPTIONS
X-Varnish: 47900326
Age: 0
Via: 1.1 varnish
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.
Thanks @ecammit for clarification
…adapter version to endpoint URL. (prebid#2793) Co-authored-by: Timothy M. Ace <tace@imds.tv>
imds: Changes the imds/synacormedia adapter hostname to be static (see: #2612) for connection efficiency. Also adds adapter names and version metrics in the request so we can evaluate when to remove the deprecated
synacormedia
adapter based upon usage. Endpoint also utilized https now so HTTP/2 may be negotiated.