-
-
Notifications
You must be signed in to change notification settings - Fork 244
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
Remove duplicated "data_dir" attribute #269
Conversation
It should be ['config']['data_dir'] instead of ['service']['data_dir']
Current coverage is
|
Good catch! I override both of these values in our own environment. I'll change this in #263 in case @johnbellone wants to keep |
@Ginja Could you please explain what is the original purpose of |
I can't unfortunately, I was simply modifying what was already there. I don't see a need for it, and am happy to eject it in my PR as well if @johnbellone would like. |
Well... I just thought that it was your idea, because this attribute has been added in your commit: |
Ha, wow. I've been working on this too long I don't even remember what I've done. I also need more coffee. I added this so I could modify this attribute without overriding the whole resource. Makes it easier to use cross-platform: https://github.com/visioncritical/consul-cookbook/commit/ad2fcf5f291f0d325dc3f11d8530c7871dc8337a#diff-e7d95569a41fab7bae4ab723c764c914L60 |
Seeing the same issue here. Changed our data dir location. |
I've updated #263 to change it back to just |
Remove duplicated "data_dir" attribute
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
I guess it was just a typo in #259
We already have
['config']['data_dir']
, so['service']['data_dir']
is not needed.Otherwise it could cause a Consul agent start failure if you override only the one of these attributes.
cc: @Ginja