From 9080bb0db0bddb9055f8880d072664c55a76fe67 Mon Sep 17 00:00:00 2001
From: Dariusz Kedzierski <dkedzierski@syncad.com>
Date: Tue, 8 Sep 2020 13:08:55 +0200
Subject: [PATCH] Fixed crash with not a wrtie query assert

---
 hive/indexer/blocks.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hive/indexer/blocks.py b/hive/indexer/blocks.py
index df214f0ea..e114baa4c 100644
--- a/hive/indexer/blocks.py
+++ b/hive/indexer/blocks.py
@@ -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))
-- 
GitLab