diff options
author | Alex Auvolat <alex@adnab.me> | 2020-04-19 17:59:59 +0000 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-04-19 17:59:59 +0000 |
commit | ea75564851851b969ef23797537c813ba607b84a (patch) | |
tree | d5bdb1a19a546cbbd92e35dbd496acfd16522dd9 /src/background.rs | |
parent | e325c7f47a9ad7777358b669f62a7c613f676ecd (diff) | |
download | garage-ea75564851851b969ef23797537c813ba607b84a.tar.gz garage-ea75564851851b969ef23797537c813ba607b84a.zip |
More aggressive sync timings & improve other stuff
Diffstat (limited to 'src/background.rs')
-rw-r--r-- | src/background.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/background.rs b/src/background.rs index f4b889ea..34e96ff7 100644 --- a/src/background.rs +++ b/src/background.rs @@ -78,6 +78,8 @@ impl BackgroundRunner { workers.push(tokio::spawn(async move { if let Err(e) = worker(stop_signal).await { eprintln!("Worker stopped with error: {}", e); + } else { + println!("A worker exited successfully (which one?)"); } })); } |