In a new release AWS added the region name to the elastic beanstalk url for every new created environment. This causes the c-name extraction for an environment to fail as the regex assumes there is no sub-domain.
So if your app war earlier on app.elasticbeanstalk.com it will now be on app.region.elasticbeanstalk.com. This case needs to be handled.
In a new release AWS added the region name to the elastic beanstalk url for every new created environment. This causes the c-name extraction for an environment to fail as the regex assumes there is no sub-domain. So if your app war earlier on
app.elasticbeanstalk.com
it will now be onapp.region.elasticbeanstalk.com
. This case needs to be handled.