Returns the `crdb_connect_timeout` configuration parameter.
(&self)
| 1938 | |
| 1939 | /// Returns the `crdb_connect_timeout` configuration parameter. |
| 1940 | pub fn crdb_connect_timeout(&self) -> Duration { |
| 1941 | *self.expect_config_value(UncasedStr::new( |
| 1942 | mz_persist_client::cfg::CRDB_CONNECT_TIMEOUT.name(), |
| 1943 | )) |
| 1944 | } |
| 1945 | |
| 1946 | /// Returns the `crdb_tcp_user_timeout` configuration parameter. |
| 1947 | pub fn crdb_tcp_user_timeout(&self) -> Duration { |
no test coverage detected