This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
dora-rs
/
dora
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
124
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Only require runtime executable when there is a runtime node declared
tags/v0.0.0-test.4
Philipp Oppermann
3 years ago
parent
12fadbf07b
commit
e8cbb63627
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
coordinator/src/main.rs
+ 1
- 1
coordinator/src/main.rs
View File
@@ -52,7 +52,7 @@ async fn run_dataflow(dataflow_path: PathBuf, runtime: &Path) -> eyre::Result<()
)
})?;
if !runtime.is_file() {
if
nodes.iter().any(|n| matches!(n.kind, NodeKind::Runtime(_))) &&
!runtime.is_file() {
bail!(
"There is no runtime at {}, or it is not a file",
runtime.display()
Write
Preview
Loading…
Cancel
Save