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
2fd88873
Commit
2fd88873
authored
4 years ago
by
Bartek Wrona
Browse files
Options
Downloads
Plain Diff
branch 'deployed_fixes_2_develop' rebased onto develop
parents
7f0fb4d6
a18289b5
No related branches found
No related tags found
2 merge requests
!456
Release candidate v1 24
,
!292
Changes done directly in deployed_20200928_pure branch delivered to develop.
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
hive/db/sql_scripts/hive_posts_base_view.sql
+1
-1
1 addition, 1 deletion
hive/db/sql_scripts/hive_posts_base_view.sql
hive/server/common/mutes.py
+8
-1
8 additions, 1 deletion
hive/server/common/mutes.py
hive/server/condenser_api/get_state.py
+1
-1
1 addition, 1 deletion
hive/server/condenser_api/get_state.py
with
10 additions
and
3 deletions
hive/db/sql_scripts/hive_posts_base_view.sql
+
1
−
1
View file @
2fd88873
...
@@ -20,7 +20,7 @@ CREATE OR REPLACE VIEW public.hive_posts_base_view
...
@@ -20,7 +20,7 @@ CREATE OR REPLACE VIEW public.hive_posts_base_view
FROM
hive_posts
hp
FROM
hive_posts
hp
;
;
DROP
VIEW
IF
EXISTS
public
.
hive_posts_pp_view
;
DROP
VIEW
IF
EXISTS
public
.
hive_posts_pp_view
CASCADE
;
CREATE
OR
REPLACE
VIEW
public
.
hive_posts_pp_view
CREATE
OR
REPLACE
VIEW
public
.
hive_posts_pp_view
AS
AS
...
...
This diff is collapsed.
Click to expand it.
hive/server/common/mutes.py
+
8
−
1
View file @
2fd88873
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
import
logging
import
logging
from
time
import
perf_counter
as
perf
from
time
import
perf_counter
as
perf
from
urllib.request
import
urlopen
,
Request
from
urllib.request
import
urlopen
,
Request
from
hive.db.adapter
import
Db
log
=
logging
.
getLogger
(
__name__
)
log
=
logging
.
getLogger
(
__name__
)
...
@@ -64,7 +65,13 @@ class Mutes:
...
@@ -64,7 +65,13 @@ class Mutes:
def
load
(
self
):
def
load
(
self
):
"""
Reload all accounts from irredeemables endpoint and global lists.
"""
"""
Reload all accounts from irredeemables endpoint and global lists.
"""
# TODO: Refactor/remove this method
self
.
all_accounts
.
clear
()
sql
=
"
select id, name from hive_accounts
"
db
=
Db
.
instance
()
sql_result
=
db
.
query_all
(
sql
)
for
row
in
sql_result
:
self
.
all_accounts
[
row
[
'
id
'
]]
=
row
[
'
name
'
]
self
.
fetched
=
perf
()
@classmethod
@classmethod
def
all
(
cls
):
def
all
(
cls
):
...
...
This diff is collapsed.
Click to expand it.
hive/server/condenser_api/get_state.py
+
1
−
1
View file @
2fd88873
...
@@ -137,7 +137,7 @@ async def get_state(context, path: str):
...
@@ -137,7 +137,7 @@ async def get_state(context, path: str):
assert
not
part
[
2
],
"
unexpected discussion path part[2] %s
"
%
path
assert
not
part
[
2
],
"
unexpected discussion path part[2] %s
"
%
path
sort
=
valid_sort
(
part
[
0
])
sort
=
valid_sort
(
part
[
0
])
tag
=
valid_tag
(
part
[
1
].
lower
(),
allow_empty
=
True
)
tag
=
valid_tag
(
part
[
1
].
lower
(),
allow_empty
=
True
)
pids
=
await
get_posts_by_given_sort
(
db
,
sort
,
''
,
''
,
20
,
tag
)
pids
=
await
get_posts_by_given_sort
(
context
,
sort
,
''
,
''
,
20
,
tag
)
state
[
'
content
'
]
=
_keyed_posts
(
await
load_posts
(
db
,
pids
))
state
[
'
content
'
]
=
_keyed_posts
(
await
load_posts
(
db
,
pids
))
state
[
'
discussion_idx
'
]
=
{
tag
:
{
sort
:
list
(
state
[
'
content
'
].
keys
())}}
state
[
'
discussion_idx
'
]
=
{
tag
:
{
sort
:
list
(
state
[
'
content
'
].
keys
())}}
state
[
'
tag_idx
'
]
=
{
'
trending
'
:
await
get_top_trending_tags_summary
(
context
)}
state
[
'
tag_idx
'
]
=
{
'
trending
'
:
await
get_top_trending_tags_summary
(
context
)}
...
...
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