Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hivemind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
hivemind
Commits
9080bb0d
Commit
9080bb0d
authored
4 years ago
by
Dariusz Kędzierski
Browse files
Options
Downloads
Patches
Plain Diff
Fixed crash with not a wrtie query assert
parent
06322641
No related branches found
No related tags found
4 merge requests
!456
Release candidate v1 24
,
!230
Setup monitoring with pghero
,
!138
Small typos fixed
,
!124
Remove FKs before initial sync and recreate after initial sync
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hive/indexer/blocks.py
+3
-3
3 additions, 3 deletions
hive/indexer/blocks.py
with
3 additions
and
3 deletions
hive/indexer/blocks.py
+
3
−
3
View file @
9080bb0d
...
@@ -397,6 +397,6 @@ class Blocks:
...
@@ -397,6 +397,6 @@ class Blocks:
update_hot_and_tranding_for_block_range
(
first_block
,
last_block
)
update_hot_and_tranding_for_block_range
(
first_block
,
last_block
)
update_active_starting_from_posts_on_block
(
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
_no_return
(
"
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
_no_return
(
"
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_api_helper({},{})
"
.
format
(
first_block
,
last_block
))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment