-
-
Notifications
You must be signed in to change notification settings - Fork 241
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 Archive creates definition #168
Conversation
Hi @sc0rp10, thanks for the fix. Can you add a test for this that verifies that it is working? |
@bastelfreak hi! |
@sc0rp10 thanks for the PR. We generally require tests for our PRs as we use those to validate that the fix/feature/enhancement actually does what is expected before we merge. We are willing to provide help and guidance with the tests. |
i think this issue was fixed in with pull request #215 |
@sc0rp10 can you test against our master branch and check if the error is fixed for you? |
@bastelfreak I agree with @blupman and this pull request should be closed, because of missing feedback. |
@@ -12,6 +12,7 @@ ExecStart=<%= scope.lookupvar('prometheus::bin_dir') %>/prometheus \ | |||
ExecReload=/bin/kill -HUP $MAINPID | |||
KillMode=process | |||
Restart=always | |||
LimitNOFILE=1000000 |
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.
Did you add this on purpose or was it planned for the other PR. I think this change isn't related, so please undo it.
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.
ah sorry, my mistake
Hi. I closed this PR. Please reopen it if you're still interested in it. |
Because of typo, archive resource tries to uses directory like
/opt/prometheus::redis_exporter-0.15.0.linux-amd64/prometheus::redis_exporter
instead of/opt/redis_exporter-0.15.0.linux-amd64
.This was produced endless message
I changed variable name to the correct one.