diff options
author | whcrc <whcrc@yandex-team.ru> | 2022-06-09 11:04:15 +0300 |
---|---|---|
committer | whcrc <whcrc@yandex-team.ru> | 2022-06-09 11:04:15 +0300 |
commit | 71f1d3833dc656f57b03171d691f249134df7c85 (patch) | |
tree | 107cae3393fc1c31e0285c30e54151970d0fd2b8 | |
parent | 7c19be8171fdfbed85f4a29d4b4335eafce98997 (diff) | |
download | ydb-71f1d3833dc656f57b03171d691f249134df7c85.tar.gz |
increase timeout in dq_file tests
ref:ceab33205982127cb146d0b744b5bde84afc227c
-rw-r--r-- | ydb/library/yql/providers/dq/actors/executer_actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/yql/providers/dq/actors/executer_actor.cpp b/ydb/library/yql/providers/dq/actors/executer_actor.cpp index aff34066bd..7232feeb22 100644 --- a/ydb/library/yql/providers/dq/actors/executer_actor.cpp +++ b/ydb/library/yql/providers/dq/actors/executer_actor.cpp @@ -225,7 +225,7 @@ private: Timeout = tasks.size() == 1 ? TDuration::MilliSeconds(Settings->_LiteralTimeout.Get().GetOrElse(TDqSettings::TDefault::LiteralTimeout)) : TDuration::MilliSeconds(Settings->_TableTimeout.Get().GetOrElse(TDqSettings::TDefault::TableTimeout)); - + YQL_CLOG(DEBUG, ProviderDq) << "Dq timeout set to: " << ToString(Timeout); if (Timeout) { if (StartTime - RequestStartTime > Timeout) { |