Returns the `crdb_keepalives_interval` configuration parameter.
(&self)
| 1959 | |
| 1960 | /// Returns the `crdb_keepalives_interval` configuration parameter. |
| 1961 | pub fn crdb_keepalives_interval(&self) -> Duration { |
| 1962 | *self.expect_config_value(UncasedStr::new( |
| 1963 | mz_persist_client::cfg::CRDB_KEEPALIVES_INTERVAL.name(), |
| 1964 | )) |
| 1965 | } |
| 1966 | |
| 1967 | /// Returns the `crdb_keepalives_retries` configuration parameter. |
| 1968 | pub fn crdb_keepalives_retries(&self) -> u32 { |
no test coverage detected