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
Merge requests
!824
update haf for slow processing alarm (
haf#245
)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
update haf for slow processing alarm (
haf#245
)
mi/haf#259_slow_processing_alarm
into
develop
Overview
0
Commits
1
Pipelines
0
Changes
3
Open
Marcin
requested to merge
mi/haf#259_slow_processing_alarm
into
develop
2 months ago
Overview
0
Commits
1
Pipelines
0
Changes
13
Expand
Reqd:
haf!593
,
reputation_tracker!79
Edited
2 months ago
by
Marcin
0
0
Merge request reports
Compare
version 1
version 3
af607f65
2 months ago
version 2
b0ca881a
2 months ago
version 1
9bd18f09
2 months ago
develop (base)
and
latest version
latest version
6bdb9710
1 commit,
2 months ago
version 3
af607f65
1 commit,
2 months ago
version 2
b0ca881a
1 commit,
2 months ago
version 1
9bd18f09
1 commit,
2 months ago
Show latest version
13 files
+
66
−
44
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
hive/db/sql_scripts/postgrest/bridge_api/bridge_api_list_subscribers.sql
+
4
−
5
Options
@@ -37,14 +37,13 @@ BEGIN
COALESCE
(
hr
.
title
,
NULL
)
AS
title
,
hivemind_postgrest_utilities
.
json_date
(
hs
.
created_at
)
AS
created_at
FROM
hivemind_app
.
hive_subscriptions
hs
LEFT
JOIN
hivemind_app
.
hive_roles
hr
ON
hs
.
account_id
=
hr
.
account_id
AND
hs
.
community_id
=
hr
.
community_id
JOIN
hivemind_app
.
hive_accounts
ha
ON
hs
.
account_id
=
ha
.
id
LEFT
JOIN
hivemind_app
.
hive_roles
hr
ON
hs
.
account_id
=
hr
.
account_id
AND
hs
.
community_id
=
hr
.
community_id
WHERE
hs
.
community_id
=
_community_id
AND
NOT
(
_subscription_id
<>
0
AND
hs
.
id
>=
_subscription_id
)
WHERE
hs
.
community_id
=
_community_id
AND
(
_subscription_id
=
0
OR
(
hs
.
id
<
_subscription_id
))
ORDER
BY
ha
.
name
ASC
LIMIT
_limit
)
row
)
row
),
'[]'
::
JSONB
);
Loading