We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 72419d7 + 15372f5 commit f2f6205Copy full SHA for f2f6205
source/rhoas/src/main/java/com/openshift/cloud/controllers/ConditionUtil.java
@@ -257,11 +257,11 @@ public static String getStandarizedErrorMessage(int statusCode) {
257
case 503: // SC_UNAVAILABILE
258
return "Service unavailable at the moment";
259
case 500: // SC_INTERNAL_SERVER_ERROR:
260
- return "Unknown server error.";
+ return "Unknown server error";
261
case 400: // HttpStatus.SC_BAD_REQUEST:
262
- return "Invalid request";
+ return "Provided user input is invalid";
263
case 401: // HttpStatus.SC_UNAUTHORIZED:
264
- return "Auth Token is invalid.";
+ return "Cannot authenticate user with the service";
265
case 403: // HttpStatus.SC_FORBIDDEN:
266
return "User not authorized to access the service";
267
default:
0 commit comments