Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
tvorogme committed Sep 14, 2024
1 parent 4b35484 commit d04644e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lite-server-daemon/adnl-lite-proxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,9 @@ namespace ton::liteserver {
if (error->message_.find(substring) != std::string::npos) {
if (refire + 1 > allowed_refire) {
LOG(ERROR) << "Too deep refire";
auto res = create_serialize_tl_object<lite_api::liteServer_error>(228, "Too deep refire");
auto res = create_serialize_tl_object<lite_api::liteServer_error>(error->code_,
error->message_ +
" : tried over all nodes");
process_cache(std::move(data), res.clone(), compiled_query, elapsed);
promise.set_value(std::move(res));
return;
Expand Down

0 comments on commit d04644e

Please sign in to comment.