-
-
Notifications
You must be signed in to change notification settings - Fork 269
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
Add address field to memcached plugin #853
Conversation
@@ -1,9 +1,16 @@ | |||
<Plugin memcached> |
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.
hey @mrunge, are you interested in turning this into an epp template?
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.
@mrunge We prefer epp for new templates going forward, but will merge this for now.
manifests/plugin/memcached.pp
Outdated
@@ -1,7 +1,10 @@ | |||
# https://collectd.org/wiki/index.php/Plugin:memcached | |||
class collectd::plugin::memcached ( | |||
$ensure = 'present', | |||
Hash $instances = {'default' => {'host' => '127.0.0.1', 'port' => 11211 } }, | |||
Hash $instances = {'default' => { |
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.
Can you please enforce the structure of the hash?
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.
What do you mean by 'enforcing the structure' here? I'm not sure that I can follow you.
Ok, now the tests report a valid issue, I'll submit an update asap. |
I see the tests failing, but not connected to the change. On my setup, tests passed, and on 5 of the CI runners; |
Ok, the error has been
|
I'm still not sure what's happening in the tests. It seems not connected. |
@bastelfreak see #855 for the same CI issue. The other patch does nothing. Any idea how to fix CI here? |
I restarted the tests here, it should now work. |
@bastelfreak Any news from tests here? The failure is different, but still failing. |
This is another bug in beaker-puppet/beaker :( |
Any ideas or how to continue? |
@alexjfisher do you know if there was any progress on the beaker issue? I lost track. |
I think puppetlabs/beaker-puppet#59 might have caused a regression? |
But I can't see how or why yet. I'll do some more testing. |
beaker failures fixed in #858 |
@mrunge can you rebase please? |
As addition to the host field, there is also the address setting, which is helpful sometimes.
@bastelfreak done. |
Is anything missing here from my side? |
Thank you. |
As addition to the host field, there is also the address setting,
which is helpful sometimes.
Pull Request (PR) description
This also adds the address field to the memcached plugin.