Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
HELpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
HELpy
Merge requests
!80
Draft: Remove notifications
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: Remove notifications
kmochocki/mt-remove-notifications
into
develop
Overview
0
Commits
23
Pipelines
20
Changes
128
Open
Krzysztof Mochocki
requested to merge
kmochocki/mt-remove-notifications
into
develop
1 month ago
Overview
0
Commits
23
Pipelines
20
Changes
128
Expand
Remove notifications
What this MR is adding?
Remove notifications handling from beekeepy
Add app_status_probe to quickly interact with new app_status_api api
Bit of refactor
TODO:
clean branches in hive and test-tools
verify if new implementation works in clive
add mechanism to close detached beekeeper basing only on process list
Edited
1 month ago
by
Krzysztof Mochocki
0
0
Merge request reports
Compare
develop
version 16
61160383
4 days ago
version 15
01bcfa62
5 days ago
version 14
a9ee4c1b
6 days ago
version 13
c23bd700
6 days ago
version 12
68b2b51f
6 days ago
version 11
bd0e5223
1 week ago
version 10
ae21d226
1 week ago
version 9
a7741e1b
1 week ago
version 8
0b6806b5
1 week ago
version 7
24ad4488
1 week ago
version 6
2be8cb82
1 week ago
version 5
db9808de
1 week ago
version 4
6935d262
1 week ago
version 3
efcd557b
1 week ago
version 2
3e983c0a
1 week ago
version 1
380337ca
1 month ago
develop (HEAD)
and
latest version
latest version
28ac56d4
23 commits,
4 days ago
version 16
61160383
22 commits,
4 days ago
version 15
01bcfa62
21 commits,
5 days ago
version 14
a9ee4c1b
20 commits,
6 days ago
version 13
c23bd700
19 commits,
6 days ago
version 12
68b2b51f
18 commits,
6 days ago
version 11
bd0e5223
17 commits,
1 week ago
version 10
ae21d226
16 commits,
1 week ago
version 9
a7741e1b
16 commits,
1 week ago
version 8
0b6806b5
16 commits,
1 week ago
version 7
24ad4488
15 commits,
1 week ago
version 6
2be8cb82
15 commits,
1 week ago
version 5
db9808de
15 commits,
1 week ago
version 4
6935d262
15 commits,
1 week ago
version 3
efcd557b
15 commits,
1 week ago
version 2
3e983c0a
14 commits,
1 week ago
version 1
380337ca
14 commits,
1 month ago
128 files
+
2062
−
1415
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
128
Search (e.g. *.vue) (Ctrl+P)
beekeepy/beekeepy/_apis/abc/__init__.py
0 → 100644
+
33
−
0
Options
from
__future__
import
annotations
from
beekeepy._apis.abc.api
import
(
AbstractApi
,
AbstractAsyncApi
,
AbstractSyncApi
,
ApiArgumentSerialization
,
ApiArgumentsToSerialize
,
HandleT
,
RegisteredApisT
,
)
from
beekeepy._apis.abc.api_collection
import
AbstractAsyncApiCollection
,
AbstractSyncApiCollection
from
beekeepy._apis.abc.sendable
import
(
AsyncSendable
,
SyncSendable
,
)
from
beekeepy._apis.abc.session_holder
import
AsyncSessionHolder
,
SyncSessionHolder
__all__
=
[
"
AbstractApi
"
,
"
AbstractAsyncApi
"
,
"
AbstractAsyncApiCollection
"
,
"
AbstractSyncApi
"
,
"
AbstractSyncApiCollection
"
,
"
ApiArgumentSerialization
"
,
"
ApiArgumentsToSerialize
"
,
"
AsyncSendable
"
,
"
AsyncSessionHolder
"
,
"
HandleT
"
,
"
RegisteredApisT
"
,
"
SyncSendable
"
,
"
SyncSessionHolder
"
,
]
Loading