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 the Kubernetes service catalog, ancient and unsupported version 0.0.1, hits the ServiceInstancesResource#deleteServiceInstance() method, a NullPointerException results:
SEVERE: java.lang.NullPointerException
java.lang.NullPointerException
at java.util.Objects.requireNonNull(Objects.java:203)
at org.microbean.servicebroker.jaxrs.ServiceInstancesResource.deleteServiceInstance(ServiceInstancesResource.java:245)
This is probably valid in the sense that whatever is being asserted probably should NOT be null, but we need to make sure.
The text was updated successfully, but these errors were encountered:
...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.The text was updated successfully, but these errors were encountered: