We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e55caf commit 21437cbCopy full SHA for 21437cb
1 file changed
src/executor/mod.rs
@@ -114,7 +114,7 @@ pub async fn run_executor(
114
None
115
};
116
117
- let run_result = executor.run(execution_context, &mongo_tracer).await;
+ executor.run(execution_context, &mongo_tracer).await?;
118
119
// TODO: refactor and move directly in the Instruments struct as a `stop` method
120
if let Some(mut mongo_tracer) = mongo_tracer {
@@ -123,9 +123,6 @@ pub async fn run_executor(
123
debug!("Tearing down the executor");
124
executor.teardown(execution_context).await?;
125
126
- // Propagate any run error after cleanup
127
- run_result?;
128
-
129
orchestrator
130
.logger
131
.persist_log_to_profile_folder(&execution_context.profile_folder)?;
0 commit comments