RTB4FREE / crosstalk

Connects Campaign Manager to the RTB4FREE bidders
13 stars 28 forks source link

Elasticache paths should start with '/' #3

Open mcorner opened 5 years ago

mcorner commented 5 years ago

To be compatible with Amazon ECS paths have to start with '/'

So: indexResponse = restClient.performRequest("GET", index + "/_search",

should be:

        indexResponse = restClient.performRequest("GET", "/" + index + "/_search",
mcorner commented 5 years ago

And the elasticsearch port should be configurable (AWS uses 80 and 443)