diff options
author | gotocoding <gotocoding@yandex-team.ru> | 2022-02-10 16:46:22 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:22 +0300 |
commit | 45738c866e76573384c5169e409d35f004e50a2e (patch) | |
tree | a2ed750ec040efb6f81e3f54aaccc9e37b5b4cf7 | |
parent | 75bb191a318a07ddc2956385bbc09e41da6c47b0 (diff) | |
download | ydb-45738c866e76573384c5169e409d35f004e50a2e.tar.gz |
Restoring authorship annotation for <gotocoding@yandex-team.ru>. Commit 1 of 2.
6 files changed, 11 insertions, 11 deletions
diff --git a/contrib/restricted/boost/boost/process/async_system.hpp b/contrib/restricted/boost/boost/process/async_system.hpp index 0165c361fb..b2066d0096 100644 --- a/contrib/restricted/boost/boost/process/async_system.hpp +++ b/contrib/restricted/boost/boost/process/async_system.hpp @@ -82,7 +82,7 @@ struct async_system_handler : ::boost::process::detail::api::async_handler { #if defined(BOOST_POSIX_API) if (errored) - return [](int /* exit_code */, const std::error_code & /* ec */){}; + return [](int /* exit_code */, const std::error_code & /* ec */){}; #endif auto & h = init.completion_handler; return [h](int exit_code, const std::error_code & ec) mutable diff --git a/contrib/restricted/boost/boost/process/detail/posix/async_in.hpp b/contrib/restricted/boost/boost/process/detail/posix/async_in.hpp index cfe5120da1..16437ce3d1 100644 --- a/contrib/restricted/boost/boost/process/detail/posix/async_in.hpp +++ b/contrib/restricted/boost/boost/process/detail/posix/async_in.hpp @@ -39,7 +39,7 @@ struct async_in_buffer : ::boost::process::detail::posix::handler_base_ext, { } template <typename Executor> - inline void on_success(Executor & /* exec */) + inline void on_success(Executor & /* exec */) { auto pipe = this->pipe; if (this->promise) @@ -60,7 +60,7 @@ struct async_in_buffer : ::boost::process::detail::posix::handler_base_ext, } else boost::asio::async_write(*pipe, buf, - [pipe](const boost::system::error_code&, std::size_t /* size */){}); + [pipe](const boost::system::error_code&, std::size_t /* size */){}); std::move(*pipe).source().close(); diff --git a/contrib/restricted/boost/boost/process/detail/posix/async_out.hpp b/contrib/restricted/boost/boost/process/detail/posix/async_out.hpp index 5cedc7c473..75a1a72940 100644 --- a/contrib/restricted/boost/boost/process/detail/posix/async_out.hpp +++ b/contrib/restricted/boost/boost/process/detail/posix/async_out.hpp @@ -57,11 +57,11 @@ struct async_out_buffer : ::boost::process::detail::posix::handler_base_ext, } template <typename Executor> - inline void on_success(Executor & /* exec */) + inline void on_success(Executor & /* exec */) { auto pipe = this->pipe; boost::asio::async_read(*pipe, buf, - [pipe](const boost::system::error_code&, std::size_t /* size */){}); + [pipe](const boost::system::error_code&, std::size_t /* size */){}); this->pipe = nullptr; std::move(*pipe).sink().close(); @@ -112,7 +112,7 @@ struct async_out_future : ::boost::process::detail::posix::handler_base_ext, fut = promise->get_future(); } template <typename Executor> - inline void on_success(Executor & /* exec */) + inline void on_success(Executor & /* exec */) { auto pipe = this->pipe; @@ -120,7 +120,7 @@ struct async_out_future : ::boost::process::detail::posix::handler_base_ext, auto promise = this->promise; boost::asio::async_read(*pipe, *buffer, - [pipe, buffer, promise](const boost::system::error_code& ec, std::size_t /* size */) + [pipe, buffer, promise](const boost::system::error_code& ec, std::size_t /* size */) { if (ec && (ec.value() != ENOENT)) { diff --git a/contrib/restricted/boost/boost/process/detail/posix/async_pipe.hpp b/contrib/restricted/boost/boost/process/detail/posix/async_pipe.hpp index 9216750230..2b9a5ec1b6 100644 --- a/contrib/restricted/boost/boost/process/detail/posix/async_pipe.hpp +++ b/contrib/restricted/boost/boost/process/detail/posix/async_pipe.hpp @@ -244,7 +244,7 @@ async_pipe::async_pipe(const async_pipe & p) : } } -async_pipe& async_pipe::operator=(const async_pipe & /* p */) +async_pipe& async_pipe::operator=(const async_pipe & /* p */) { int source; int sink; diff --git a/contrib/restricted/boost/boost/process/detail/posix/group_handle.hpp b/contrib/restricted/boost/boost/process/detail/posix/group_handle.hpp index 2b3d74d4bf..e1feded273 100644 --- a/contrib/restricted/boost/boost/process/detail/posix/group_handle.hpp +++ b/contrib/restricted/boost/boost/process/detail/posix/group_handle.hpp @@ -42,7 +42,7 @@ struct group_handle } void add(handle_t proc) - { + { if (::setpgid(proc, grp)) throw_last_error(); } @@ -56,7 +56,7 @@ struct group_handle { return ::getpgid(proc) == grp; } - bool has(handle_t proc, std::error_code & /* ec */) noexcept + bool has(handle_t proc, std::error_code & /* ec */) noexcept { return ::getpgid(proc) == grp; } diff --git a/ydb/public/sdk/python/ydb/table.py b/ydb/public/sdk/python/ydb/table.py index c49c4660c7..ee3b32d142 100644 --- a/ydb/public/sdk/python/ydb/table.py +++ b/ydb/public/sdk/python/ydb/table.py @@ -2433,7 +2433,7 @@ class SessionPool(object): self.tracer = driver._driver_config.tracer else: self.tracer = ydb.Tracer(None) - + def retry_operation_sync(self, callee, retry_settings=None, *args, **kwargs): retry_settings = RetrySettings() if retry_settings is None else retry_settings |