Skip to content

Commit

Permalink
fix(servicebroker): reverse map check bool order
Browse files Browse the repository at this point in the history
  • Loading branch information
EvB committed May 8, 2018
1 parent 09c9908 commit fcd9672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/server/servicebroker/apiserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func NewALMBroker(kubeconfigPath string, options Options) (*ALMBroker, error) {
var _ broker.Interface = &ALMBroker{}

func (a *ALMBroker) ValidateBrokerAPIVersion(version string) error {
ok, supported := supportedOSBVersions[version]
supported, ok := supportedOSBVersions[version]
log.Debugf("Component=ServiceBroker Endpoint=ValidateBrokerAPIVersion Version=%s Supported=%s",
version, ok)
if !ok {
Expand Down

0 comments on commit fcd9672

Please sign in to comment.