Skip to content
Snippets Groups Projects
Commit 9080bb0d authored by Dariusz Kędzierski's avatar Dariusz Kędzierski
Browse files

Fixed crash with not a wrtie query assert

parent 06322641
No related branches found
No related tags found
4 merge requests!456Release candidate v1 24,!230Setup monitoring with pghero,!138Small typos fixed,!124Remove FKs before initial sync and recreate after initial sync
......@@ -397,6 +397,6 @@ class Blocks:
update_hot_and_tranding_for_block_range( first_block, last_block )
update_active_starting_from_posts_on_block( first_block, last_block )
DB.query("SELECT update_hive_posts_children_count({}, {})".format(first_block, last_block))
DB.query("SELECT update_hive_posts_root_id({},{})".format(first_block, last_block))
DB.query("SELECT update_hive_posts_api_helper({},{})".format(first_block, last_block))
DB.query_no_return("SELECT update_hive_posts_children_count({}, {})".format(first_block, last_block))
DB.query_no_return("SELECT update_hive_posts_root_id({},{})".format(first_block, last_block))
DB.query_no_return("SELECT update_hive_posts_api_helper({},{})".format(first_block, last_block))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment