Added code to check if queue_item is schedulable #10

Merged
phoenix merged 2 commits from is_schedulable into v0.3.0 2026-06-24 21:58:37 -04:00
Showing only changes of commit 695c6919d6 - Show all commits
+3 -3
View File
@@ -30,13 +30,13 @@ impl Service {
println!("Queue item Id: {:?}", queue_item.id);
if self.is_schedulable(&queue_item) {
println!("Can schedule");
} else {
if !self.is_schedulable(&queue_item) {
println!("Not schedulable");
return;
}
println!("Can schedule");
todo!(
r#"
Need to finish this