Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
shnikd committed Sep 19, 2024
1 parent 8a5b980 commit cd0bb55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ydb/tools/query_replay_yt/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class TQueryReplayMapper
auto future = ActorSystem->Ask<TQueryReplayEvents::TEvCompileResponse>(
compileActorId,
THolder(new TQueryReplayEvents::TEvCompileRequest(std::move(json))),
TDuration::Seconds(300));
TDuration::Seconds(600));

return future.ExtractValueSync();
}
Expand Down
2 changes: 1 addition & 1 deletion ydb/tools/query_replay_yt/query_compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ class TReplayCompileActor: public TActorBootstrapped<TReplayCompileActor> {
StartCompilation();
Continue();

Schedule(TDuration::Seconds(60), new TEvents::TEvWakeup());
Schedule(TDuration::Seconds(300), new TEvents::TEvWakeup());
Become(&TThis::StateCompile);
}

Expand Down

0 comments on commit cd0bb55

Please sign in to comment.