Skip to content

Commit 4f9fd4f

Browse files
authored
Unified can't replay messages (#10017)
1 parent 1e9cd6b commit 4f9fd4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/library/yql/core/qplayer/udf_resolver/yql_qplayer_udf_resolver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ class TResolver : public IUdfResolver {
6767

6868
TResolveResult LoadRichMetadata(const TVector<TImport>& imports) const final {
6969
if (QContext_.CanRead()) {
70-
ythrow yexception() << "can't replay LoadRichMetadata";
70+
ythrow yexception() << "Can't replay LoadRichMetadata";
7171
}
7272

7373
return Inner_->LoadRichMetadata(imports);
7474
}
7575

7676
bool ContainsModule(const TStringBuf& moduleName) const final {
7777
if (QContext_.CanRead()) {
78-
ythrow yexception() << "can't replay ContainsModule";
78+
ythrow yexception() << "Can't replay ContainsModule";
7979
}
8080

8181
return Inner_->ContainsModule(moduleName);

0 commit comments

Comments
 (0)