mirror of https://github.com/knative/client.git
Update CHANGELOG and error for port flag parsing (#926)
* error message change for #912 * add change log
This commit is contained in:
parent
ad145a89d8
commit
226e605d40
|
|
@ -37,6 +37,10 @@
|
|||
| 🎁
|
||||
| Add commands to manage Broker resource
|
||||
| https://github.com/knative/client/pull/894[#894]
|
||||
|
||||
| 🐣
|
||||
| Refactor port field to accept port name and port
|
||||
| https://github.com/knative/client/pull/915[#915]
|
||||
|===
|
||||
|
||||
## v0.15.2 (2020-06-16)
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ type VolumeSourceType int
|
|||
const (
|
||||
ConfigMapVolumeSourceType VolumeSourceType = iota
|
||||
SecretVolumeSourceType
|
||||
PortFormatErr = "The port specification '%s' is not valid. Please provide in the format 'NAME:PORT', where 'NAME' is optional. Examples: '--port h2c:8080' , '--port 8080'."
|
||||
PortFormatErr = "the port specification '%s' is not valid. Please provide in the format 'NAME:PORT', where 'NAME' is optional. Examples: '--port h2c:8080' , '--port 8080'."
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
|||
Loading…
Reference in New Issue