Skip to content

Commit 152db29

Browse files
committed
a python-based dataloader is not a viewer
1 parent d6c346c commit 152db29

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

crates/re_data_source/src/data_loader/loader_external.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ impl crate::DataLoader for ExternalLoader {
139139
re_tracing::profile_function!(exe.to_string_lossy());
140140

141141
let child = Command::new(exe)
142+
// Make sure the child dataloader doesn't think it's a Rerun Viewer, otherwise
143+
// it's never gonna be able to log anything.
144+
.env_remove("RERUN_APP_ONLY")
142145
.arg(filepath.clone())
143146
.args(args)
144147
.stdout(Stdio::piped())

0 commit comments

Comments
 (0)