Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
add remove task table to sqlx migration
Browse files Browse the repository at this point in the history
  • Loading branch information
musitdev committed Feb 22, 2024
1 parent 4d6cf3b commit 512fbf3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 4 additions & 0 deletions crates/node/migrations/20240222200513_remove_task_table.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- Remove Task Table

DROP TABLE IF EXISTS task;
DROP TABLE IF EXISTS file;
1 change: 0 additions & 1 deletion crates/node/src/scheduler/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ impl Scheduler {

let mut task = match self.pick_task().await {
Some(t) => {
tracing::trace!("Pick a new task:{t:#?}");
tracing::debug!("task {}/{} scheduled for running", t.id, t.tx);
t
}
Expand Down

0 comments on commit 512fbf3

Please sign in to comment.