Skip to content

Commit

Permalink
Fix compilation error from other PR
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper committed May 24, 2024
1 parent 3e5ab2c commit e144171
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/commands/state/clear.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pub async fn run_clear(State(env): State<CliEnv>, opts: &Clear) -> Result<()> {
}

async fn clear(env: &CliEnv, opts: &Clear) -> Result<()> {
let sql_client = crate::clients::DataFusionHttpClient::new(env)?;
let sql_client = crate::clients::DataFusionHttpClient::new(env).await?;

let (svc, key) = match opts.query.split_once('/') {
None => (opts.query.as_str(), None),
Expand Down

0 comments on commit e144171

Please sign in to comment.