Skip to content

Commit

Permalink
misc: use return Ok(())
Browse files Browse the repository at this point in the history
Co-authored-by: Corentin REGAL <[email protected]>
  • Loading branch information
mfuntowicz and co42 authored Dec 12, 2024
1 parent e0dda9b commit 182ffaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/llamacpp/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ async fn main() -> Result<(), RouterError> {
use utoipa::OpenApi;
let api_doc = ApiDoc::openapi().to_pretty_json().unwrap();
println!("{}", api_doc);
std::process::exit(0);
return Ok(());
};
text_generation_router::logging::init_logging(otlp_endpoint, otlp_service_name, json_output);

Expand Down

0 comments on commit 182ffaf

Please sign in to comment.