cargo fmt
This commit is contained in:
parent
18d014dcc5
commit
08cd5f2f1d
7 changed files with 9 additions and 33 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1737,7 +1737,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "k2v-client"
|
name = "k2v-client"
|
||||||
version = "0.1.0"
|
version = "0.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"clap 3.1.18",
|
"clap 3.1.18",
|
||||||
|
|
|
@ -773,10 +773,7 @@ impl Worker for ResyncWorker {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn work(
|
async fn work(&mut self, _must_exit: &mut watch::Receiver<bool>) -> Result<WorkerState, Error> {
|
||||||
&mut self,
|
|
||||||
_must_exit: &mut watch::Receiver<bool>,
|
|
||||||
) -> Result<WorkerState, Error> {
|
|
||||||
self.tranquilizer.reset();
|
self.tranquilizer.reset();
|
||||||
match self.manager.resync_iter().await {
|
match self.manager.resync_iter().await {
|
||||||
Ok(ResyncIterResult::BusyDidSomething) => Ok(self
|
Ok(ResyncIterResult::BusyDidSomething) => Ok(self
|
||||||
|
|
|
@ -62,10 +62,7 @@ impl Worker for RepairWorker {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn work(
|
async fn work(&mut self, _must_exit: &mut watch::Receiver<bool>) -> Result<WorkerState, Error> {
|
||||||
&mut self,
|
|
||||||
_must_exit: &mut watch::Receiver<bool>,
|
|
||||||
) -> Result<WorkerState, Error> {
|
|
||||||
match self.block_iter.as_mut() {
|
match self.block_iter.as_mut() {
|
||||||
None => {
|
None => {
|
||||||
// Phase 1: Repair blocks from RC table.
|
// Phase 1: Repair blocks from RC table.
|
||||||
|
@ -279,10 +276,7 @@ impl Worker for ScrubWorker {
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn work(
|
async fn work(&mut self, _must_exit: &mut watch::Receiver<bool>) -> Result<WorkerState, Error> {
|
||||||
&mut self,
|
|
||||||
_must_exit: &mut watch::Receiver<bool>,
|
|
||||||
) -> Result<WorkerState, Error> {
|
|
||||||
match self.rx_cmd.try_recv() {
|
match self.rx_cmd.try_recv() {
|
||||||
Ok(cmd) => self.handle_cmd(cmd).await,
|
Ok(cmd) => self.handle_cmd(cmd).await,
|
||||||
Err(mpsc::error::TryRecvError::Disconnected) => return Ok(WorkerState::Done),
|
Err(mpsc::error::TryRecvError::Disconnected) => return Ok(WorkerState::Done),
|
||||||
|
|
|
@ -89,10 +89,7 @@ impl Worker for RepairVersionsWorker {
|
||||||
Some(format!("{} items done", self.counter))
|
Some(format!("{} items done", self.counter))
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn work(
|
async fn work(&mut self, _must_exit: &mut watch::Receiver<bool>) -> Result<WorkerState, Error> {
|
||||||
&mut self,
|
|
||||||
_must_exit: &mut watch::Receiver<bool>,
|
|
||||||
) -> Result<WorkerState, Error> {
|
|
||||||
let item_bytes = match self.garage.version_table.data.store.get_gt(&self.pos)? {
|
let item_bytes = match self.garage.version_table.data.store.get_gt(&self.pos)? {
|
||||||
Some((k, v)) => {
|
Some((k, v)) => {
|
||||||
self.pos = k;
|
self.pos = k;
|
||||||
|
@ -170,10 +167,7 @@ impl Worker for RepairBlockrefsWorker {
|
||||||
Some(format!("{} items done", self.counter))
|
Some(format!("{} items done", self.counter))
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn work(
|
async fn work(&mut self, _must_exit: &mut watch::Receiver<bool>) -> Result<WorkerState, Error> {
|
||||||
&mut self,
|
|
||||||
_must_exit: &mut watch::Receiver<bool>,
|
|
||||||
) -> Result<WorkerState, Error> {
|
|
||||||
let item_bytes = match self.garage.block_ref_table.data.store.get_gt(&self.pos)? {
|
let item_bytes = match self.garage.block_ref_table.data.store.get_gt(&self.pos)? {
|
||||||
Some((k, v)) => {
|
Some((k, v)) => {
|
||||||
self.pos = k;
|
self.pos = k;
|
||||||
|
|
|
@ -344,10 +344,7 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn work(
|
async fn work(&mut self, _must_exit: &mut watch::Receiver<bool>) -> Result<WorkerState, Error> {
|
||||||
&mut self,
|
|
||||||
_must_exit: &mut watch::Receiver<bool>,
|
|
||||||
) -> Result<WorkerState, Error> {
|
|
||||||
match self.gc.gc_loop_iter().await? {
|
match self.gc.gc_loop_iter().await? {
|
||||||
None => Ok(WorkerState::Busy),
|
None => Ok(WorkerState::Busy),
|
||||||
Some(delay) => {
|
Some(delay) => {
|
||||||
|
|
|
@ -322,10 +322,7 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn work(
|
async fn work(&mut self, _must_exit: &mut watch::Receiver<bool>) -> Result<WorkerState, Error> {
|
||||||
&mut self,
|
|
||||||
_must_exit: &mut watch::Receiver<bool>,
|
|
||||||
) -> Result<WorkerState, Error> {
|
|
||||||
let updater = self.0.clone();
|
let updater = self.0.clone();
|
||||||
tokio::task::spawn_blocking(move || {
|
tokio::task::spawn_blocking(move || {
|
||||||
for _i in 0..100 {
|
for _i in 0..100 {
|
||||||
|
|
|
@ -21,10 +21,7 @@ impl Worker for JobWorker {
|
||||||
format!("Job worker #{}", self.index)
|
format!("Job worker #{}", self.index)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn work(
|
async fn work(&mut self, _must_exit: &mut watch::Receiver<bool>) -> Result<WorkerState, Error> {
|
||||||
&mut self,
|
|
||||||
_must_exit: &mut watch::Receiver<bool>,
|
|
||||||
) -> Result<WorkerState, Error> {
|
|
||||||
match self.next_job.take() {
|
match self.next_job.take() {
|
||||||
None => return Ok(WorkerState::Idle),
|
None => return Ok(WorkerState::Idle),
|
||||||
Some(job) => {
|
Some(job) => {
|
||||||
|
|
Loading…
Reference in a new issue