Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MooreOnline
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
LHCb
MooreOnline
Merge requests
!164
Small fixes and improvements
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Small fixes and improvements
rm-improvements
into
master
Overview
0
Commits
5
Pipelines
4
Changes
1
Merged
Rosen Matev
requested to merge
rm-improvements
into
master
2 years ago
Overview
0
Commits
5
Pipelines
4
Changes
1
Expand
small fix to download script
Fix monitoring task MBM user type
Fail when tasks exit with non-zero code
Support running testbench in sanitizer builds
Add missing find_package for dependencies
0
0
Merge request reports
Viewing commit
e139bc77
Prev
Next
Show latest version
1 file
+
3
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
e139bc77
Fix monitoring task MBM user type
· e139bc77
Rosen Matev
authored
2 years ago
MooreOnlineConf/options/online.py
+
3
−
2
Options
@@ -85,8 +85,9 @@ else:
# all events if it can't process fast enough. However, for testing we
# use "ONE" so that the reader does not keep on pumping events when
# they are not consumer (i.e. a debugger is attached).
input_mbm_user_type
=
(
"
USER
"
if
OnlineEnv
.
PartitionName
.
startswith
(
"
TEST
"
)
else
"
ONE
"
)
input_mbm_user_type
=
"
USER
"
if
OnlineEnv
.
PartitionName
.
startswith
(
"
TEST
"
):
input_mbm_user_type
=
"
ONE
"
if
task_type
==
"
HLT2
"
:
application
.
config
.
events_LowMark
=
1000
Loading