]> git.proxmox.com Git - proxmox-backup.git/blobdiff - src/server/worker_task.rs
import ordering cleanup
[proxmox-backup.git] / src / server / worker_task.rs
index f8947c1bef3ade0d3d555f231d474a13fe8c6f94..b36307131cce2aa00e6d4f674dcaa3075bf593be 100644 (file)
@@ -1,17 +1,16 @@
-use failure::*;
-use lazy_static::lazy_static;
-use chrono::Local;
-
-use tokio::sync::oneshot;
-use futures::*;
-use std::sync::{Arc, Mutex};
 use std::collections::HashMap;
-use std::sync::atomic::{AtomicBool, Ordering};
-use std::io::{BufRead, BufReader};
 use std::fs::File;
+use std::io::{BufRead, BufReader};
 use std::panic::UnwindSafe;
+use std::sync::atomic::{AtomicBool, Ordering};
+use std::sync::{Arc, Mutex};
 
+use chrono::Local;
+use failure::*;
+use futures::*;
+use lazy_static::lazy_static;
 use serde_json::{json, Value};
+use tokio::sync::oneshot;
 
 use proxmox::tools::{
     try_block,