error[E0599]: no method named with_retries found for struct TcpKeepalive in the current scope
--> crates/data-server/src/server/data_source.rs:83:18
|
81 | &TcpKeepalive::new()
| -
82 | | .with_time(Duration::from_secs(5))
83 | | .with_retries(1) // 1 is minimum
| |___-^^^^^^^^^^^^
|
help: there is a method with_time with a similar name
|
83 - .with_retries(1) // 1 is minimum
83 + .with_time(1) // 1 is minimum
|
error[E0599]: no method named
with_retriesfound for structTcpKeepalivein the current scope--> crates/data-server/src/server/data_source.rs:83:18
|
81 | &TcpKeepalive::new()
| -
82 | | .with_time(Duration::from_secs(5))
83 | | .with_retries(1) // 1 is minimum
| |___-^^^^^^^^^^^^
|
help: there is a method
with_timewith a similar name|
83 - .with_retries(1) // 1 is minimum
83 + .with_time(1) // 1 is minimum
|