We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87081a2 commit 919666fCopy full SHA for 919666f
internal/config/remote_signer.go
@@ -46,7 +46,7 @@ func (c *RemoteSignerConfig) Parse() (*ParsedRemoteSignerConfig, error) {
46
if err != nil {
47
return nil, fmt.Errorf("invalid url %s: %w", urlStr, err)
48
}
49
- urls[i] = fmt.Sprintf("http://%s", parsedUrl.Host)
+ urls[i] = fmt.Sprintf("%s://%s", parsedUrl.Scheme, parsedUrl.Host)
50
51
publicKeyStr := parsedUrl.User.String()
52
pkBytes, err := hex.DecodeString(publicKeyStr)
0 commit comments