Skip to content

Commit

Permalink
Merge pull request #279 from cybozu-go/fix-advertise-url-https-error-…
Browse files Browse the repository at this point in the history
…message

fix error message for advertise-url-https
  • Loading branch information
umezawatakeshi committed Jan 17, 2024
2 parents 9d6ef83 + 7b7686a commit 4671aa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sabakan/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func subMain(ctx context.Context) error {
return err
}
if cfg.AdvertiseURLHTTPS == "" {
return errors.New("advertise-url-http must be specified")
return errors.New("advertise-url-https must be specified")
}
advertiseURLHTTPS, err := url.Parse(cfg.AdvertiseURLHTTPS)
if err != nil {
Expand Down

0 comments on commit 4671aa2

Please sign in to comment.