chore: Remove some of the things that are missing

This commit is contained in:
BluJ
2023-07-12 14:01:56 -06:00
parent b7abd878ac
commit 3202c38061
5 changed files with 1 additions and 44 deletions

View File

@@ -271,7 +271,7 @@ impl JsExecutionEnvironment {
}
};
let safer_handle = spawn_local(|| self.execute(procedure_name, input, variable_args)).await;
let output = safer_handle.await.unwrap()?;
let output = dbg!(safer_handle.await).unwrap()?;
match serde_json::from_value(output.clone()) {
Ok(x) => Ok(x),
Err(err) => {