Skip to content
Open
1 change: 1 addition & 0 deletions crates/trusted-server-adapter-fastly/src/template_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ mod tests {
name: "rsc".to_string(),
values: Some(vec![b"1".to_vec()]),
}],
cookie_values: Vec::new(),
template_fingerprint: "fp".to_string(),
schema_version: TEMPLATE_SCHEMA_VERSION,
}
Expand Down
2 changes: 2 additions & 0 deletions crates/trusted-server-core/src/cookies.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
//! This module provides functionality for parsing, stripping, and forwarding cookies used in the
//! trusted server system.

pub(crate) mod template_cache_policy;

use cookie::{Cookie, CookieJar};
use edgezero_core::body::Body as EdgeBody;
use error_stack::{Report, ResultExt as _};
Expand Down
Loading
Loading