Skip to content

Commit

Permalink
Change wording on successful identity provider validation. (unitycata…
Browse files Browse the repository at this point in the history
…log#509)

**PR Checklist**

- [ ] A description of the changes is added to the description of this
PR.
- [ ] If there is a related issue, make sure it is linked to this PR.
- [ ] If you've fixed a bug or added code that should be tested, add
tests!
- [ ] If you've added or modified a feature, documentation in `docs` is
updated

**Description of changes**

Simple wording change for CLI login process.

Signed-off-by: Teghan Nightengale <tnightengale@gmail.com>
  • Loading branch information
creechy authored and tnightengale committed Oct 2, 2024
1 parent 92caa9a commit 4d95e04
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 4d95e04

Please sign in to comment.