Skip to content

Commit e59a165

Browse files
authored
rustfmt
1 parent 45d51d7 commit e59a165

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tokio-postgres/src/keepalive.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@ impl From<&KeepaliveConfig> for TcpKeepalive {
1717
tcp_keepalive = tcp_keepalive.with_interval(interval);
1818
}
1919

20-
#[cfg(not(any(target_os = "redox", target_os = "solaris", target_os = "windows", target_os = "openbsd")))]
20+
#[cfg(not(any(
21+
target_os = "redox",
22+
target_os = "solaris",
23+
target_os = "windows",
24+
target_os = "openbsd"
25+
)))]
2126
if let Some(retries) = keepalive_config.retries {
2227
tcp_keepalive = tcp_keepalive.with_retries(retries);
2328
}

0 commit comments

Comments
 (0)