cli, etcd, lib: Fixup golint issues with SSH

This stuff is arbitrary and stupid.
This commit is contained in:
James Shubin
2025-04-05 12:44:56 -04:00
parent f6a8404f9f
commit fce250b8af
3 changed files with 16 additions and 16 deletions

View File

@@ -148,14 +148,14 @@ type Config struct {
// this many seconds. Use 0 to disable this.
MaxRuntime uint `arg:"--max-runtime,env:MGMT_MAX_RUNTIME" help:"exit after a maximum of approximately this many seconds"`
// SshUrl can be specified if we want to transport the SSH client
// SSHURL can be specified if we want to transport the SSH client
// connection over SSH. If this is specified, the second hop is made
// with the Seeds values, but they connect from this destination. You
// can specify this in the standard james@server:22 format. This will
// use your ~/.ssh/ directory for public key authentication and
// verifying the host key in the known_hosts file. This must already be
// setup for things to work.
SshUrl string `arg:"--ssh-url" help:"transport the etcd client connection over SSH to this server"`
SSHURL string `arg:"--ssh-url" help:"transport the etcd client connection over SSH to this server"`
// Seeds are the list of default etcd client endpoints. If empty, it
// will startup a new server.
@@ -617,9 +617,9 @@ func (obj *Main) Run() error {
return gapiInfoResult.URI
},
}
if obj.SshUrl != "" { // alternate world implementation over SSH
if obj.SSHURL != "" { // alternate world implementation over SSH
world = &etcdSSH.World{
URL: obj.SshUrl,
URL: obj.SSHURL,
Seeds: obj.Seeds,
NS: NS,
MetadataPrefix: MetadataPrefix,