Merge pull request #231 from taskchampion/working_set_rebuild_bug

Fix a working set rebuild bug
This commit is contained in:
Dustin J. Mitchell
2021-05-17 21:36:56 -04:00
committed by GitHub
5 changed files with 96 additions and 9 deletions

View File

@@ -6,7 +6,7 @@ pub(crate) fn execute<W: WriteColor>(
replica: &mut Replica,
server: &mut Box<dyn Server>,
) -> anyhow::Result<()> {
replica.sync(server).unwrap();
replica.sync(server)?;
writeln!(w, "sync complete.")?;
Ok(())
}