Skip to content

Commit

Permalink
Fix tremor run for archives
Browse files Browse the repository at this point in the history
Signed-off-by: Heinz N. Gies <[email protected]>
  • Loading branch information
Licenser authored and darach committed Jun 18, 2024
1 parent f8a8e6c commit 14bf033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tremor-cli/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ impl ServerRun {
for archive_file in archives {
let mut archive = tremor_common::asy::file::open(&archive_file).await?;

if let Err(e) = tremor_runtime::load_archive(&world, &mut archive, "main", None).await {
if let Err(e) = tremor_runtime::load_archive(&world, &mut archive, None, None).await {
return Err(ErrorKind::FileLoadError(archive_file.to_string(), e).into());
}
}
Expand Down

0 comments on commit 14bf033

Please sign in to comment.