Skip to content

Commit

Permalink
cool
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyBurger committed Feb 10, 2025
1 parent e079ebf commit f7620ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Binary file modified packages/compositor-darwin-arm64/remotion
Binary file not shown.
5 changes: 2 additions & 3 deletions packages/compositor/rust/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ impl LongRunningProcess {
}

fn start(&mut self) -> Result<(), ErrorWithBacktrace> {
let mut finish_thread_handles = vec![];
let mut thread_map = select_right_thread::ThreadMap::new(self.threads);

for thread_index in 0..self.threads {
Expand All @@ -250,8 +249,8 @@ impl LongRunningProcess {

input = matched.trim().to_string();
if input == "EOF" {
for send_handle in self.send_to_thread_handles {
send_handle.send(CliInputCommand {
for i in 0..self.send_to_thread_handles.len() {
self.send_to_thread_handles[i].send(CliInputCommand {
payload: CliInputCommandPayload::Eof(Eof {}),
nonce: "".to_string(),
})?;
Expand Down

0 comments on commit f7620ab

Please sign in to comment.