Skip to main content

try_run_with_parsed_fast

Function try_run_with_parsed_fast 

Source
pub fn try_run_with_parsed_fast(
    parsed: ParsedCli,
) -> Result<CliResult<()>, Box<ParsedCli>>
Expand description

Run startup-sensitive commands before constructing the async runtime.

cass health --json is documented as a <50ms fast-readiness surface. Even the current-thread runtime setup is visible in subprocess latency tests, so keep this command on a synchronous path and leave the general async runner for commands that actually need it.