Revert "DEBUG HACKS, DO NOT MERGE"

This reverts commit e95d32e821.
This commit is contained in:
Folkert 2022-02-16 15:08:10 +01:00
parent 95bfc3b342
commit ae998e2504
7 changed files with 2 additions and 30 deletions

View file

@ -755,7 +755,6 @@ enum BuildTask<'a> {
},
}
#[derive(Debug)]
enum WorkerMsg {
Shutdown,
TaskAdded,
@ -1404,8 +1403,7 @@ fn worker_task_step<'a>(
src_dir: &Path,
target_info: TargetInfo,
) -> Result<ControlFlow<(), ()>, LoadingProblem<'a>> {
let recv = worker_msg_rx.try_recv();
match recv {
match worker_msg_rx.try_recv() {
Ok(msg) => {
match msg {
WorkerMsg::Shutdown => {