summaryrefslogtreecommitdiff
path: root/mingling_core/src/program.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_core/src/program.rs')
-rw-r--r--mingling_core/src/program.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/mingling_core/src/program.rs b/mingling_core/src/program.rs
index 3d8bc14..1f234af 100644
--- a/mingling_core/src/program.rs
+++ b/mingling_core/src/program.rs
@@ -120,12 +120,7 @@ macro_rules! __dispatch_program_chains {
Box::pin(fut)
}
)*
- _ => Box::pin(async move {
- mingling::AnyOutput::new(mingling::hint::NoChainFound {
- name: format!("{:?}", any.type_id).to_string(),
- })
- .route_chain()
- }),
+ _ => panic!("No chain found for type id: {:?}", any.type_id),
}
}
};