We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6c346c commit 152db29Copy full SHA for 152db29
crates/re_data_source/src/data_loader/loader_external.rs
@@ -139,6 +139,9 @@ impl crate::DataLoader for ExternalLoader {
139
re_tracing::profile_function!(exe.to_string_lossy());
140
141
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")
145
.arg(filepath.clone())
146
.args(args)
147
.stdout(Stdio::piped())
0 commit comments