This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
cmd,task: disable stray command line args, and log the command in LogArguments (#579) #588
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.
cherry-pick #579 to release-4.0
What problem does this PR solve?
It was confusing that
--checksum false
does not actually disable checksum, because--checksum
as a boolean flag already means--checksum=true
. So--checksum false
becomes--checksum=true false
, and that extrafalse
becomes a stray argument, which is ignored before this PR.LogArguments
did not record whether it is a "backup" or "restore" making it a bit hard to determine the data direction when reading logs.What is changed and how it works?
Added
Args: cobra.NoArgs
to all leaf commands so using--checksum false
will result inrather than silently keeping checksum.
Record the command being executed inside
LogArguments
.Note that I changed
LogArguments
from usingVisitAll
toVisit
. Originally in add log for cmd arguments and duration for checksum #55 it was usingVisitAll
to print all args, however it was changed in Don't log secret of s3. #292 to condition onf.Changed
, so perhaps let's just useVisit
directly 🙃.Check List
Tests
Code changes
Side effects
Related changes
Release Note
--checksum false
in command line, which did not disable checksum. The correct usage always include the=
sign:--checksum=false
.