We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 565c97f commit 575c850Copy full SHA for 575c850
crates/pg_workspace_new/src/workspace/server.rs
@@ -40,12 +40,6 @@ static RUNTIME: LazyLock<Runtime> =
40
LazyLock::new(|| Runtime::new().expect("Failed to create Tokio runtime"));
41
42
impl DbConnection {
43
- pub(crate) fn is_connected_to(&self, connection_string: &str) -> bool {
44
- self.connection_string
45
- .as_ref()
46
- .is_some_and(|x| x == connection_string)
47
- }
48
-
49
pub(crate) fn get_pool(&self) -> Option<PgPool> {
50
self.pool.clone()
51
}
0 commit comments