undo the remote_consistent_lsn feedback channel brought in by the PoC merge (includes undo of funneling pageserver_connection field via connection options)

This commit is contained in:
Christian Schwarz
2025-06-02 12:00:39 +02:00
parent 39039d1be7
commit 18a43eeab3
7 changed files with 1 additions and 63 deletions

View File

@@ -46,8 +46,6 @@ pub struct ConnectionConfigArgs<'a> {
pub auth_token: Option<&'a str>,
pub availability_zone: Option<&'a str>,
pub pageserver_generation: Option<u32>,
}
impl<'a> ConnectionConfigArgs<'a> {
@@ -74,10 +72,6 @@ impl<'a> ConnectionConfigArgs<'a> {
));
}
if let Some(pageserver_generation) = self.pageserver_generation {
options.push(format!("pageserver_generation={pageserver_generation}"));
}
options
}
}