-
Bug Report
-
Resolution: Fixed
-
L3 - Default
-
7.15.11
Environment (Required on creation):
Camunda Spring Boot Starter, 7.15.x & 7,16.x
Description (Required on creation; please attach any relevant screenshots, stacktraces, log files, etc. to the ticket):
Upon openening the Camunda Cockpit the login page sends a GET request to the URL /camunda-welcome. This URL does not exist. Due to that we get either an HTTP 404 error, or more severe after we switched to using SSL within our environment we get HTTP 503 with an error popup:
1st example (from the environment of our customer Commerzbank).
Please be aware that we use server.servlet.context-path: /dovp here, so that the URL /camunda-welcome will never be found, whether it exists under the Cockpit App or not.
2nd example (just starting a standard Camunda Spring Boot Starter application without any security configuration or any other specifca):
Steps to reproduce (Required on creation):
Start a Spring Boot application with Camunda Spring Boot Starter Cockpit dependency.
Observed Behavior (Required on creation):
An error notification is shown.
Expected behavior (Required on creation):
No error notification is shown.
Root Cause (Required on prioritization):
When the context path is changed, a request against /camunda-welcome fails with an error where the status code is not 404. This leads to an error notification that confuses the user since it seems like something is wrong.
Solution Ideas (Optional):
Swallow error message when it results from a GET /camunda-welcome.
Hints (optional):
-