fix: Increment submit_job counter

Gotta increment that counter to submit jobs to each thread. Big dummy.
This commit is contained in:
2023-06-24 20:43:53 -05:00
parent 1d7f075e0d
commit d77655af12

View File

@@ -94,7 +94,8 @@ impl Dispatcher {
match self.command_transmitters.get(self.next_to_feed){ match self.command_transmitters.get(self.next_to_feed){
Some(target) => target.send(command), Some(target) => target.send(command),
None => panic!("oh god oh fuck"), None => panic!("oh god oh fuck"),
}; }
self.next_to_feed += 1;
} }
} }