Update main.rs

This commit is contained in:
nora 2022-09-29 08:25:07 +02:00 committed by GitHub
parent e167ecec35
commit de7eca4ab1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,7 +36,7 @@ async fn main() -> color_eyre::Result<()> {
)
.init();
let (job_queue_send, job_queue_recv) = mpsc::channel();
let (job_queue_send, job_queue_recv) = mpsc::channel(); // FIXME: make this a sync_channel because bounds are cool
let sqlite_db = env::var("SQLITE_DB").unwrap_or_else(|_| "bisect.sqlite".to_string());