Skip to content

Commit

Permalink
fix tsb error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Minter committed Jul 4, 2017
1 parent 3cc73c6 commit 73eb17b
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 73eb17b

Please sign in to comment.