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 ed189f1 commit abc64b6Copy full SHA for abc64b6
1 file changed
crates/taurus-core/src/runtime/engine/compiler.rs
@@ -151,7 +151,10 @@ pub fn compile_flow(
151
}
152
153
fn execution_target_for(node: &NodeFunction) -> NodeExecutionTarget {
154
- if node.definition_source.is_empty() || node.definition_source == "taurus" {
+ if node.definition_source.is_empty()
155
+ || node.definition_source == "taurus"
156
+ || node.definition_source.starts_with("draco")
157
+ {
158
NodeExecutionTarget::Local
159
} else {
160
NodeExecutionTarget::Remote {
0 commit comments