Open ljnelson opened 6 years ago
The line in question, 245, is this:
Objects.requireNonNull(serviceId);
...where serviceId
is a @QueryParam
-annotated parameter. So the ancient and unsupported version 0.0.1 of the Kubernetes service catalog is not passing the (required) serviceId
parameter.
When the Kubernetes service catalog, ancient and unsupported version 0.0.1, hits the
ServiceInstancesResource#deleteServiceInstance()
method, aNullPointerException
results:This is probably valid in the sense that whatever is being asserted probably should NOT be
null
, but we need to make sure.