Skip to content

Commit

Permalink
Merge pull request #15034 from jim-minter/tsb_error_fix
Browse files Browse the repository at this point in the history
Merged by openshift-bot
  • Loading branch information
OpenShift Bot authored Jul 5, 2017
2 parents fc8f3c7 + 73eb17b commit c9f829c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/template/servicebroker/servicebroker.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ type Broker struct {
templateclient internalversiontemplate.TemplateInterface
extkc kclientsetexternal.Interface
extrouteclient extrouteclientset.RouteV1Interface
restconfig restclient.Config
lister templatelister.TemplateLister
templateNamespaces map[string]struct{}
ready chan struct{}
Expand Down Expand Up @@ -72,7 +71,7 @@ func NewBroker(privrestconfig restclient.Config, privkc kclientset.Interface, in

extrouteclientset, err := extrouteclientset.NewForConfig(restconfig)
if err != nil {
utilruntime.HandleError(fmt.Errorf("Template service broker: failed to initialize template clientset: %v", err))
utilruntime.HandleError(fmt.Errorf("Template service broker: failed to initialize route clientset: %v", err))
return
}

Expand Down

0 comments on commit c9f829c

Please sign in to comment.