I’m doing some experimentation with a self-managed Camunda 8 configuration deployed to AWS ECS Fargate using Terraform. I’ve made a first try in February with 8.4 versions and everything was working fine.
With the upgrade to the version 8.5.2 for the platform and 8.5.3 for the connectors-bundle, I can see the following error in the connectors log:
2024-06-26T12:25:42.349Z ERROR 1 — [ scheduling-1] i.c.common.auth.SimpleAuthentication : Authenticating for OPERATE failed due to org.apache.hc.client5.http.ClientProtocolException
I’ve checked the different environment variables as listed in the camunda platform docker-compose.yml file without finding the right setup.
my experimental configuration is not using the identity app.
When trying the 2.5.5 version, it fails connecting to the running operate service: still trying to connect to http://localhost:8081 whatever the properties I was trying to inject for the URL (also tried to find alternate properties names in the source code).
As desperate move I’ve tried the 8.6.0-alpha version and it finally worked!!!
So apparently the operate URL wasn’t correctly loaded in the 2.5.X versions of the connectors-bundle.
BR