Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spearhead
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
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Global Dynamic Exposure
OpenBuildingMap
spearhead
Merge requests
!12
You need to sign in or sign up before continuing.
Added rabotnik message bus logic
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Added rabotnik message bus logic
feature/rabotnik-message-bus
into
master
Overview
3
Commits
1
Pipelines
6
Changes
4
Merged
Felix Delattre
requested to merge
feature/rabotnik-message-bus
into
master
3 years ago
Overview
3
Commits
1
Pipelines
6
Changes
4
Expand
\approve
@marius
Edited
3 years ago
by
Felix Delattre
0
0
Merge request reports
Compare
master
version 5
1cbb823d
3 years ago
version 4
97089ef1
3 years ago
version 3
31b2220b
3 years ago
version 2
7e7bb20c
3 years ago
version 1
d5026fce
3 years ago
master (base)
and
latest version
latest version
24c03bfe
1 commit,
3 years ago
version 5
1cbb823d
1 commit,
3 years ago
version 4
97089ef1
1 commit,
3 years ago
version 3
31b2220b
1 commit,
3 years ago
version 2
7e7bb20c
1 commit,
3 years ago
version 1
d5026fce
1 commit,
3 years ago
4 files
+
35
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
spearhead/configure.py
+
5
−
0
Options
@@ -40,6 +40,11 @@ class Configuration:
self
.
overpass_base_url
=
config
[
"
overpass_base_url
"
]
self
.
filepath
=
config
[
"
filepath
"
]
self
.
state_filename
=
config
[
"
state_filename
"
]
self
.
rabotnik
=
{
"
hostname
"
:
config
[
"
rabotnik
"
][
"
hostname
"
],
"
username
"
:
config
[
"
rabotnik
"
][
"
username
"
],
"
password
"
:
config
[
"
rabotnik
"
][
"
password
"
],
}
except
KeyError
as
e
:
logger
.
info
(
"
Error: The variable %s hasn
'
t been set in the config file.
"
%
str
(
e
))
sys
.
exit
(
1
)
Loading