mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
commit
43b31204a4
@ -38,7 +38,11 @@ TimeoutSetter::~TimeoutSetter()
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
/// It's known that setting timeouts for a socket often does not work on Apple macOS.
|
||||
/// Let's not confuse the users of Apple macOS with extraneous error messages.
|
||||
#if !defined(OS_DARWIN)
|
||||
tryLogCurrentException("Client", "TimeoutSetter: Can't reset timeouts");
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user