Returns the `crdb_tcp_user_timeout` configuration parameter.
(&self)
| 1945 | |
| 1946 | /// Returns the `crdb_tcp_user_timeout` configuration parameter. |
| 1947 | pub fn crdb_tcp_user_timeout(&self) -> Duration { |
| 1948 | *self.expect_config_value(UncasedStr::new( |
| 1949 | mz_persist_client::cfg::CRDB_TCP_USER_TIMEOUT.name(), |
| 1950 | )) |
| 1951 | } |
| 1952 | |
| 1953 | /// Returns the `crdb_keepalives_idle` configuration parameter. |
| 1954 | pub fn crdb_keepalives_idle(&self) -> Duration { |
no test coverage detected