Skip to content

Commit e1a7d89

Browse files
committed
Fix issues
1 parent 7f3e63d commit e1a7d89

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ydb/core/tx/scheme_board/cache.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ namespace {
103103
template <typename TEvRequest, typename TDerived>
104104
class TDbResolver: public TActorBootstrapped<TDerived> {
105105
void Handle() {
106-
this->Send(Request->Forward(Cache));
106+
Request->Rewrite(Request->GetTypeRewrite(), Cache);
107+
this->Send(Request.Release());
107108
this->PassAway();
108109
}
109110

0 commit comments

Comments
 (0)