Skip to content

Commit

Permalink
tweak reauth error message
Browse files Browse the repository at this point in the history
  • Loading branch information
greybaron committed Aug 14, 2024
1 parent 801cb43 commit 2ef2b9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pub async fn check_revive_session(
match new_login_response {
Ok(Json(login_response)) => Ok(Json(Some(login_response))),
Err(_) => Err(ResponseError {
message: "CD healthcheck failed".to_string(),
message: "Failed to log in to CaDu - did the password change?".to_string(),
status_code: StatusCode::UNAUTHORIZED,
}),
}
Expand Down

0 comments on commit 2ef2b9d

Please sign in to comment.