Skip to content

Commit 3df4dc4

Browse files
committed
update workflows
1 parent a62f978 commit 3df4dc4

File tree

3 files changed

+43
-41
lines changed

3 files changed

+43
-41
lines changed

Cargo.lock

Lines changed: 39 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ default-members = ["compute"]
99

1010
[workspace.package]
1111
edition = "2021"
12-
version = "0.2.30"
12+
version = "0.2.31"
1313
license = "Apache-2.0"
1414
readme = "README.md"
1515

compute/src/workers/workflow.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,9 @@ mod tests {
336336

337337
log::info!("Got all results, closing channel.");
338338
publish_rx.close();
339-
workflow_tx.worker_handle.await.unwrap();
339+
340+
// TODO: this bugs out
341+
worker_handle.await.unwrap();
340342
log::info!("Done.");
341343
}
342344
}

0 commit comments

Comments
 (0)