remove useless prints

This commit is contained in:
Tamo 2024-11-20 12:27:12 +01:00
parent 56eacd221f
commit 7e379b3d14
No known key found for this signature in database
GPG key ID: 20CD8020AFA88D69
3 changed files with 0 additions and 10 deletions

View file

@ -65,7 +65,6 @@ async fn perform_snapshot() {
let next_task = task.uid() + 1;
loop {
let (value, code) = index.get_task(next_task).await;
dbg!(&value);
if code != 404 && value["status"].as_str() == Some("succeeded") {
break;
}