-
Notifications
You must be signed in to change notification settings - Fork 39
Assorted fixes #319
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
base: main
Are you sure you want to change the base?
Assorted fixes #319
Conversation
Reviewer's GuideLowered verbosity for startup logs, standardized flag formatting in the gvproxy script, and corrected the default RESTful URI description in the usage documentation. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
Hey @cfergeau - I've reviewed your changes and they look great!
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
contrib/scripts/start-gvproxy.sh
Outdated
@@ -23,7 +23,7 @@ set -exuo pipefail | |||
DISK_IMAGE="${1?Usage: $0 diskimage}" | |||
VM_NAME="$(basename ${DISK_IMAGE})" | |||
|
|||
${GVPROXY} -mtu 1500 -ssh-port 2223 -listen-vfkit unixgram://$(pwd)/${VM_NAME}.sock -log-file ${VM_NAME}.gvproxy.log --pid-file ${VM_NAME}.gvproxy.pid & | |||
${GVPROXY} -mtu 1500 -ssh-port 2223 -listen-vfkit unixgram://$(pwd)/${VM_NAME}.sock -log-file ${VM_NAME}.gvproxy.log -pid-file ${VM_NAME}.gvproxy.pid & |
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.
I would use --
for all commands since it is more consistent with other commands in this file, and most commands, but this is good enough.
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: nirs The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
They are dumping some internal data structures using %+v which is not very user friendly. Signed-off-by: Christophe Fergeau <[email protected]>
Signed-off-by: Christophe Fergeau <[email protected]>
By default it’s set to `none://`: ``` pkg/cmdline/cmdline.go:const DefaultRestfulURI = "none://" ``` Signed-off-by: Christophe Fergeau <[email protected]>
/lgtm |
One doc fix reported in containers/krunkit#51 (comment)
One consistency fix reported in #317 (comment)
And silencing of 2 debug-looking logs.
Summary by Sourcery
Silence nonessential logs, standardize script flag naming, and improve documentation clarity for the RESTful service default
Enhancements:
Documentation: