Skip to content

Commit

Permalink
chore: protocol -> scheme/protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmd5 committed Dec 16, 2023
1 parent 706f60d commit 74e3d02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ingress/ingress.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var (
errLastRuleNotCatchAll = errors.New("The last ingress rule must match all URLs (i.e. it should not have a hostname or path filter)")
errBadWildcard = errors.New("Hostname patterns can have at most one wildcard character (\"*\") and it can only be used for subdomains, e.g. \"*.example.com\"")
errHostnameContainsPort = errors.New("Hostname cannot contain a port")
errHostnameContainsProtocol = errors.New("Hostname cannot contain a protocol (e.g. http://, https://, etc.)")
errHostnameContainsProtocol = errors.New("Hostname cannot contain a scheme/protocol (e.g. http://, https://, etc.)")
ErrURLIncompatibleWithIngress = errors.New("You can't set the --url flag (or $TUNNEL_URL) when using multiple-origin ingress rules")
)

Expand Down

0 comments on commit 74e3d02

Please sign in to comment.