Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Constellation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Constellation
Constellation
Merge requests
!366
cxx/satellite: advertise get_run_id method
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
cxx/satellite: advertise get_run_id method
b-fix-runid
into
main
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Simon Spannagel
requested to merge
b-fix-runid
into
main
6 months ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
Satellites did not advertise their
get_run_id
command via
get_commands
.
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
f3fe2188
1 commit,
6 months ago
1 file
+
1
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
cxx/constellation/satellite/BaseSatellite.cpp
+
1
−
0
Options
@@ -180,6 +180,7 @@ BaseSatellite::handle_standard_command(std::string_view command) {
command_dict
[
"get_status"
]
=
"Get status of satellite"
;
command_dict
[
"get_config"
]
=
"Get config of satellite (returned in payload as flat MessagePack dict with strings as keys)"
;
command_dict
[
"get_run_id"
]
=
"Current or last run identifier"
;
// Append user commands
const
auto
user_commands
=
user_commands_
.
describeCommands
();
Loading