We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1717439 + d30ca06 commit b09d2b5Copy full SHA for b09d2b5
ydb/library/yql/providers/yt/lib/init_yt_api/init.cpp
@@ -77,9 +77,11 @@ class TInitYtApi {
77
YQL_CLOG(DEBUG, ProviderYt) << "Set poller_interval to " << d;
78
} else {
79
YQL_CLOG(ERROR, ProviderYt) << "Invalid poller_interval value " << p->AsString();
80
+ throw yexception() << "Invalid poller_interval value " << p->AsString();
81
}
82
} catch (...) {
83
YQL_CLOG(ERROR, ProviderYt) << "Cannot parse poller_interval: " << CurrentExceptionMessage();
84
+ throw;
85
86
87
0 commit comments