-
-
Notifications
You must be signed in to change notification settings - Fork 272
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixes #901 by excluding the ReportRelative option #902
Conversation
Hi! Thanks a lot. Sure. I'll take care of it, probably on monday when I'm back in the office :-) |
c3debd2
to
5e8de74
Compare
Hello @bastelfreak! Thanks Hannes |
The failing test was caused by a timeout on the docker daemon. I restarted the test. please have a look at diff --git a/spec/spec_helper_methods.rb b/spec/spec_helper_methods.rb
index ffbb578..0cdd12a 100644
--- a/spec/spec_helper_methods.rb
+++ b/spec/spec_helper_methods.rb
@@ -24,7 +24,7 @@ def all_supported_os_hash
},
{
'operatingsystem' => 'CentOS',
- 'operatingsystemrelease' => ['7']
+ 'operatingsystemrelease' => ['7', '8']
},
{
'operatingsystem' => 'Ubuntu',
@@ -46,7 +46,7 @@ def baseline_os_hash
supported_os: [
{
'operatingsystem' => 'CentOS',
- 'operatingsystemrelease' => ['7']
+ 'operatingsystemrelease' => ['7', '8']
}
]
} Also please feel free to enhance as many test files as you like :) |
Dear @cyberkov, thanks for the PR! This is pccibot, your friendly Vox Pupuli GitHub Bot. I noticed that your pull request contains merge conflict. Can you please rebase? You can find my sourcecode at voxpupuli/vox-pupuli-tasks |
1 similar comment
Dear @cyberkov, thanks for the PR! This is pccibot, your friendly Vox Pupuli GitHub Bot. I noticed that your pull request contains merge conflict. Can you please rebase? You can find my sourcecode at voxpupuli/vox-pupuli-tasks |
ping @cyberkov :) |
Hi! Sorry I got distracted by recent events (I am in Austria) :) Cheers Hannes |
Pull Request (PR) description
If the collectd version is 5.9.0, the
ReportRelative
option is not properly parsed. This unfortunately breaks the module on RedHat 8.1.This Pull Request (PR) fixes the following issues
Fixes #901