-
-
Notifications
You must be signed in to change notification settings - Fork 498
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
Fix Test #976
Fix Test #976
Conversation
13e510c
to
3c24114
Compare
Thanks for taking a look at this. Just a heads up before you get too deep into this -- I'm not sure if this will be easy to get working without #926 or something like it. Also, the issue in some of the failing tests with the cluster being reported as I haven't had luck getting the acceptance tests for puppet to work locally in a while (can get them to start and then certain OSes just crash outright on my machine using the Docker version of the beaker tests), so it's been hard to figure out some of the issues that are ongoing. As far as the erlang module, there was a goal of switching to the vox module in #955 and that's been also stalled by some of these continuing / circular issues. I don't use puppet or rabbitmq and haven't for quite a few years now, but I'm happy to provide any help that I can in terms of helping move any of these ongoing efforts forward. |
Thanks for the resources to start. The erlang module was used only on acceptance test, I've already use it on on ubuntu 22.04 in my production cloud, and I hate the repository because in one year the have dropped support for erlang version I use, and I've updated all my cluster to add a new node. Not so happy in a production environment. My idea was to fix acceptance using the os package (if possible) to add new OS support |
182a21b
to
f337ae3
Compare
@@ -234,7 +234,7 @@ | |||
default: {} | |||
} | |||
|
|||
if $facts['systemd'] { # systemd fact provided by systemd module | |||
if $facts['service_provider'] == 'systemd' { # systemd fact provided by systemd module |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn't be needed since the module depends on the systemd module. If anything, the comment should be updated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, try to revert to facts[systemd], if don't work remove the comment.
69c779d
to
b444f3b
Compare
@bastelfreak I've rebased on modulesync branch, hope Is a better solution to use the modulesync 7.3 test |
Hi @Valantin |
Yes and no, I'm switched to other things. |
Probably not needed with #985 etc |
Pull Request (PR) description
initial refactoring of acceptance
fix test failing on puppet 8
remove unused erlang module from fixture
bump dependency version
This Pull Request (PR) fixes the following issues
Fixes #965