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
According to the cloudfoundry docs, port parameter of route can be null. If that is the case the port attribute in the route struct should be nullable.
However in the existing structure, port is just an integer so while receiving the response null values will get converted to arbitrary integer values. Better will be to change it to a pointer.
The text was updated successfully, but these errors were encountered:
According to the cloudfoundry docs, port parameter of route can be null. If that is the case the port attribute in the route struct should be nullable.
However in the existing structure, port is just an integer so while receiving the response null values will get converted to arbitrary integer values. Better will be to change it to a pointer.
The text was updated successfully, but these errors were encountered: