Apply snapshots automatically on empty taskdbs

This commit is contained in:
Dustin J. Mitchell
2021-10-19 22:01:37 -04:00
parent 636862f8c5
commit c72cae648d
7 changed files with 86 additions and 18 deletions

View File

@@ -160,6 +160,10 @@ impl Server for LocalServer {
// the local server never requests a snapshot, so it should never get one
unreachable!()
}
fn get_snapshot(&mut self) -> anyhow::Result<Option<(VersionId, Snapshot)>> {
Ok(None)
}
}
#[cfg(test)]