remove comments, log channel errors

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-04-07 12:41:06 -04:00 committed by June
parent 68321ec467
commit 3438b340a9
3 changed files with 5 additions and 9 deletions

View file

@ -183,12 +183,9 @@ impl Service {
}
drop(state_lock);
}
Err(_) => {
// TODO: Handle error, Im too unfamiliar with the codebase to know what to do here
// recv_async returns an error if all senders have been dropped. If the channel is empty, the returned future will yield to the async runtime.
Err(e) => {
// generally shouldn't happen
error!("Failed to receive admin room event from channel: {e}");
}
}
}