Running a few sandbox gateways in Docker.
I have approx 10 APIs defined - most of them currently using ECHO API.
Today when adding a new API (ends up in the bottom in Admin portal).
When testing that it didn't work and I saw in the logs that host (baseURL) from the very first API was used.
request: "GET /health?user_key=3464a74c3dc89e07aaae6cc8dce142c2 HTTP/1.1", host: "something.domain.com"
So I removed the top API and tested again - then echo API popped up
request: "GET /health?user_key=3464a74c3dc89e07aaae6cc8dce142c2 HTTP/1.1", host: "echo-api.3scale.net"
request: "GET /health?user_key=3464a74c3dc89e07aaae6cc8dce142c2 HTTP/1.1", host: "does.not.exist"
Why does this happen?
Using this Docker image:
/ Joacim