mirror of
https://github.com/NLnetLabs/krill.git
synced 2026-09-22 17:34:56 +02:00
* Use PriorityQueue with time based Priority. * Improve session sweep logging (make it less noisy) * Update config file with new refresh settings - cap jitter at 50% of refresh * Let api schedule repo sync tasks rather than execute it synchronously. * Update version and readme for RC7 * Use the highest priority in case a task was already in the queue. * Use consistent capitalization of Krill in config files. * Update readme regarding ca-parent sync changes * Update to Lagosta with updated dependencies * Update developer documentation with new scheduler behaviour. * Add hidden api end-point for scheduling suspend all - used in testing. Co-authored-by: Ximon Eighteen <3304436+ximon18@users.noreply.github.com>
38 lines
724 B
Rust
38 lines
724 B
Rust
#![allow(clippy::upper_case_acronyms)]
|
|
extern crate base64;
|
|
#[macro_use]
|
|
extern crate bcder;
|
|
// #[macro_use]
|
|
extern crate bytes;
|
|
extern crate chrono;
|
|
extern crate clap;
|
|
extern crate futures;
|
|
extern crate futures_util;
|
|
extern crate hex;
|
|
extern crate hyper;
|
|
extern crate intervaltree;
|
|
extern crate libflate;
|
|
#[macro_use]
|
|
extern crate log;
|
|
extern crate openssl;
|
|
extern crate priority_queue;
|
|
extern crate rand;
|
|
extern crate reqwest;
|
|
extern crate rpki;
|
|
#[macro_use]
|
|
extern crate serde;
|
|
extern crate serde_json;
|
|
extern crate syslog;
|
|
extern crate tokio;
|
|
extern crate toml;
|
|
extern crate uuid;
|
|
extern crate xml as xmlrs;
|
|
|
|
pub mod cli;
|
|
pub mod commons;
|
|
pub mod constants;
|
|
pub mod daemon;
|
|
pub mod pubd;
|
|
pub mod test;
|
|
pub mod upgrades;
|