-
-
Notifications
You must be signed in to change notification settings - Fork 506
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
[bugfix] Don't check for autosync on manual triggered sync (#3026) #3029
[bugfix] Don't check for autosync on manual triggered sync (#3026) #3029
Conversation
Additional Tests are needed to verify this bugfix. |
27bce73
to
e876920
Compare
For tests I would have to write new tests utils, that support fake-remote git repos as stores. This may take me a while to figure out how to include it in the available tooling. |
@TM2500 Thanks for the PR. I won't press for tests if they don't provide more value than maintanence overhead. Feel free to mark this ready for review as is or whenever you think it's ready. Then I'll give it a good look and let you know if I think anything is amiss. |
Yes, I think tests are an order of magnitude more work, as we would have to find a way to generate dummy-remote stores in our test suite. I will mark this for review and the PR transitions from draft to a regular PR. Thank you. |
…3026) * [bugfix] Don't check for autosync on manual triggered sync Fixes gopasspw#3026 Signed-off-by: Ing. Thomas Mantl <[email protected]>
Fixes gopasspw#3026 Signed-off-by: Thomas Mantl <[email protected]>
789bb51
to
69c3e75
Compare
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.
LGTM
internal/action/sync.go
Outdated
// using GetM here to get the value for this mount, it might be different | ||
// than the global value |
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.
you could have moved the comment inside of the first if
I guess
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.
You are adding a bunch of code just to pass a bool in to the sync method.
Wouldn't it easier to just pass an additional bool to s.sync to signal that it's being invoked from autosync? Or is there something I'm missing?
You are right, as long as we only depend on the autosync-context only within the sync package, we could just use a function-parameter. |
Refactor to isAutosync function-parameter instead of a new context Signed-off-by: Ing. Thomas Mantl <[email protected]>
I refactored to function arguments. |
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.
Much simpler. Thanks a lot!
Fixes #3026