1
0
mirror of https://github.com/NLnetLabs/routinator.git synced 2024-05-19 06:50:04 +00:00

Fall back to rsync on missing RRDP data in no-update mode.

This commit is contained in:
Martin Hoffmann
2019-09-17 12:46:24 +02:00
parent 57043ccf57
commit 2107e7c8f6

View File

@ -189,6 +189,9 @@ impl<'a> Run<'a> {
let (id, server) = match res {
Some(some) => some,
None => {
if self.cache.http.is_none() {
return None
}
unwrap!(self.servers.write()).insert(
Server::create(notify_uri.clone(), &self.cache.cache_dir)
)