EOX GitLab Instance
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Data Handling
core
Merge requests
!20
replacing in registrar only handled in config.yaml
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
replacing in registrar only handled in config.yaml
registrar-replace-only-config
into
main
Overview
0
Commits
2
Pipelines
2
Changes
3
Merged
Lubomir Dolezal
requested to merge
registrar-replace-only-config
into
main
2 years ago
Overview
0
Commits
2
Pipelines
2
Changes
1
Expand
closes
#26 (closed)
0
0
Merge request reports
Compare
version 1
version 1
501f4311
2 years ago
main (base)
and
latest version
latest version
e12c80f7
2 commits,
2 years ago
version 1
501f4311
1 commit,
2 years ago
Show latest version
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
registrar/cli.py
+
2
−
2
Options
@@ -92,7 +92,7 @@ def cli(
@cli.command
(
help
=
"
Run the registrar daemon, attaching to a Redis queue
"
)
@click.pass_context
def
daemon
(
ctx
,
replace
=
True
):
def
daemon
(
ctx
):
"""
Run the registrar daemon to listen on the given queues
and execute the (de-)registrations commands.
@@ -117,7 +117,7 @@ def daemon(ctx, replace=True):
@click.argument
(
"
route_name
"
,
type
=
str
)
@click.argument
(
"
item
"
,
type
=
str
)
@click.pass_context
def
register
(
ctx
,
route_name
,
item
,
replace
=
False
):
def
register
(
ctx
,
route_name
,
item
):
"""
Registers a single item.
Examples:
Loading