diff --git a/pageserver/src/virtual_file.rs b/pageserver/src/virtual_file.rs index 65b4363f60..a86b8fa2a6 100644 --- a/pageserver/src/virtual_file.rs +++ b/pageserver/src/virtual_file.rs @@ -53,6 +53,9 @@ pub struct VirtualFile { pub path: PathBuf, open_options: OpenOptions, + // These are strings becase we only use them for metrics, and those expect strings. + // It makes no sense for us to constantly turn the `TimelineId` and `TenantId` into + // strings. tenant_id: String, timeline_id: String, }