This repository was archived by the owner on Nov 9, 2019. It is now read-only.
backends: Use defaults even if config option was provided but empty#191
Open
leonklingele wants to merge 2 commits intobndw:developfrom
Open
backends: Use defaults even if config option was provided but empty#191leonklingele wants to merge 2 commits intobndw:developfrom
leonklingele wants to merge 2 commits intobndw:developfrom
Conversation
This is a workaround for bndw#190
Collaborator
Author
|
Feel free to merge, otherwise I'll provide some tests in this PR (which might take some time though). This PR was tested using the following configurations:
$ pick ls # will access safe at ~/.pick/pick.safe
$ pick --safe ./test.safe ls # will access safe at $PWD/test.safe
$ pick ls # will access safe at ~/.pick/pick.safe
$ pick --safe ./test.safe ls # will access safe at $PWD/test.safe
$ pick ls # will access safe at ~/.pick/pick.safe
$ pick --safe ./test.safe ls # will access safe at $PWD/test.safe
$ pick ls # will access safe at the configured file backend path
$ pick --safe ./test.safe ls # will access safe at $PWD/test.safe
An error message will be shown. @bndw can you please test cases 3. & 4. using the S3 backend? |
Owner
|
Collaborator
Author
That'd be nice! Probably worth adding a |
Owner
|
LGTM with the S3 backend, tested as follows:
[storage]
type = "s3"
[storage.settings]
profile = "personal"
region = "us-west-2"
bucket = "bndw-pick"
key = "tmp/default.safe"
$ pick init
...
pick initialized
$ pick add foo
...
Password successfully copied to clipboard
[storage]
type = "s3"
[storage.settings]
profile = "personal"
region = "us-west-2"
bucket = "bndw-pick"
key = "tmp/default_two.safe"
$ pick init
...
pick initialized
$ pick add bar
...
Password successfully copied to clipboard
|
bndw
approved these changes
Jan 6, 2019
Owner
|
@leonklingele did you have any more tests to add? |
Collaborator
Author
|
Whoops, totally forgot about them. I hope to find some time by the end of next week and will update this PR.
|
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is a workaround for #190