diff --git a/examples/cli/src/main/java/io/unitycatalog/cli/utils/Oauth2CliExchange.java b/examples/cli/src/main/java/io/unitycatalog/cli/utils/Oauth2CliExchange.java index 180bb4812..6a621e2c3 100644 --- a/examples/cli/src/main/java/io/unitycatalog/cli/utils/Oauth2CliExchange.java +++ b/examples/cli/src/main/java/io/unitycatalog/cli/utils/Oauth2CliExchange.java @@ -243,7 +243,7 @@ public void handle(HttpExchange exchange) throws IOException { String value = parameters.get("code").get(0); // Prepare response send to browser. - String response = "Authentication to UC successful."; + String response = "User validated with identity provider."; exchange.sendResponseHeaders(HTTP_OK, response.getBytes().length); OutputStream os = exchange.getResponseBody(); os.write(response.getBytes());