pmorie / osb-broker-lib

A go library for developing an Open Service Broker
Apache License 2.0
28 stars 23 forks source link

PlanID is not set in UnbindRequest #43

Closed indradhanush closed 6 years ago

indradhanush commented 6 years ago

I logged the UnbindRequest parameter in the osb-starter-pack example and I see this:

Unbind Request: &v2.UnbindRequest{InstanceID:"13344184-42fb-11e8-973b-0242ac110006", BindingID:"2461225a-42fb-11e8-973b-0242ac110006", AcceptsIncomplete:false, ServiceID:"", PlanID:"", OriginatingIdentity:(*v2.OriginatingIdentity)(nil)}

But the spec here states that plan_id is a required field.

shawn-hurley commented 6 years ago

I believe this is because the Plan ID is not being pulled out from the request query string.

I think this is related to #10 and just needs to be implemented.