Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ohdear_integration
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
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
Show more breadcrumbs
project
ohdear_integration
Merge requests
!2
Issue
#3312531
: Automated tests are failing
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3312531
: Automated tests are failing
issue/ohdear_integration-3312531:3312531-automated-tests-are
into
1.x
Overview
0
Commits
11
Pipelines
2
Changes
3
Merged
Lio Novelli
requested to merge
issue/ohdear_integration-3312531:3312531-automated-tests-are
into
1.x
2 years ago
Overview
0
Commits
11
Pipelines
2
Changes
3
Expand
0
0
Merge request reports
Compare
1.x
version 8
c9d694f2
9 months ago
version 7
8caaf9e1
1 year ago
version 6
e940e170
2 years ago
version 5
96031a90
2 years ago
version 4
fd3806ee
2 years ago
version 3
213bc41d
2 years ago
version 2
58a41de4
2 years ago
version 1
d2d5c7c1
2 years ago
1.x (base)
and
latest version
latest version
c9d694f2
11 commits,
9 months ago
version 8
c9d694f2
11 commits,
9 months ago
version 7
8caaf9e1
8 commits,
1 year ago
version 6
e940e170
7 commits,
2 years ago
version 5
96031a90
6 commits,
2 years ago
version 4
fd3806ee
4 commits,
2 years ago
version 3
213bc41d
3 commits,
2 years ago
version 2
58a41de4
2 commits,
2 years ago
version 1
d2d5c7c1
1 commit,
2 years ago
3 files
+
37
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
src/OhDearHealthcheckGenerator.php
+
1
−
1
Options
@@ -71,7 +71,7 @@ class OhDearHealthcheckGenerator {
$sensor_config
=
$sensorResult
->
getSensorConfig
();
$label
=
$sensor_config
->
getLabel
();
$shortSummary
=
$sensor_config
->
getDescription
()
??
''
;
$notificationMessage
=
Html
::
decodeEntities
(
$sensorResult
->
getMessage
());
$notificationMessage
=
Html
::
decodeEntities
(
$sensorResult
->
getMessage
()
??
''
);
if
(
$value
=
$sensorResult
->
getValue
())
{
$meta
=
[
'value'
=>
$value
,
Loading