Don't use a 0 TTL for ODoH configs

This commit is contained in:
Frank Denis 2021-06-06 17:46:18 +02:00
parent 3bc0d22f69
commit 5c369fc610

View file

@ -233,7 +233,11 @@ impl DoH {
async fn serve_odoh_configs(&self) -> Result<Response<Body>, http::Error> {
let odoh_public_key = (*self.globals.odoh_rotator).clone().current_key();
let configs = (*odoh_public_key).clone().config();
match self.build_response(configs, 0, "application/octet-stream".to_string()) {
match self.build_response(
configs,
ODOH_KEY_ROTATION_SECS,
"application/octet-stream".to_string(),
) {
Ok(resp) => Ok(resp),
Err(e) => http_error(StatusCode::from(e)),
}