Commit 7b87aa7a authored by Brewer, Wes's avatar Brewer, Wes
Browse files

Minor fix for debug reporting when backfilling

parent 04084f79
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -216,7 +216,7 @@ class Scheduler:
                            scheduled_nodes = summarize_ranges(backfill_job.scheduled_nodes)
                            print(backfill_job)
                            print(f"t={self.current_time}: Backfilling job {backfill_job.id} with wall time",
                                  f"{job.wall_time} on nodes {scheduled_nodes}")
                                  f"{backfill_job.wall_time} on nodes {scheduled_nodes}")
                else:
                    self.queue.append(job)
                break