We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9b0127 commit 3dfba9fCopy full SHA for 3dfba9f
src/builder/analyzed_flow.rs
@@ -10,7 +10,6 @@ use crate::{
10
};
11
use anyhow::Result;
12
use futures::{future::Shared, FutureExt};
13
-use log::trace;
14
15
pub struct AnalyzedFlow {
16
pub flow_instance: spec::FlowInstanceSpec,
@@ -56,15 +55,13 @@ impl AnalyzedFlow {
56
55
}
57
58
pub async fn get_execution_plan(&self) -> Result<Arc<plan::ExecutionPlan>> {
59
- trace!("get_execution_plan() started");
60
let execution_plan = self
61
.execution_plan
62
.as_ref()
63
.ok_or_else(|| api_error!("Flow setup is not up to date. Please run `cocoindex setup` to update the setup."))?
64
.clone()
65
.await
66
.std_result()?;
67
- trace!("get_execution_plan() finished");
68
Ok(execution_plan)
69
70
0 commit comments