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 | 89973d10cfeccd97d2f25449a523c93940565edf (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c | |
parent | 45738c866e76573384c5169e409d35f004e50a2e (diff) | |
download | ydb-89973d10cfeccd97d2f25449a523c93940565edf.tar.gz |
Restoring authorship annotation for <gotocoding@yandex-team.ru>. Commit 2 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 b2066d0096..0165c361fb 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 16437ce3d1..cfe5120da1 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 75a1a72940..5cedc7c473 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 2b9a5ec1b6..9216750230 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 e1feded273..2b3d74d4bf 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 ee3b32d142..c49c4660c7 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 |