You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When adding a public IP to a server like so: clc server add-public-ip-address --server-id test --internal-ip-address 10.1.1.1 --ports port=9000,protocol=tcp
the data being POSTed to the API includes the PortTo field even though it was not specified. This results in an invalid port range being sent. The PortTo field should have the tag `json:",omitempty"` added so that it isn't included in the serialized payload.
The text was updated successfully, but these errors were encountered:
When adding a public IP to a server like so:
clc server add-public-ip-address --server-id test --internal-ip-address 10.1.1.1 --ports port=9000,protocol=tcp
the data being POSTed to the API includes the
PortTo
field even though it was not specified. This results in an invalid port range being sent. ThePortTo
field should have the tag`json:",omitempty"`
added so that it isn't included in the serialized payload.The text was updated successfully, but these errors were encountered: