@@ -374,8 +374,8 @@ func (c *controller) reconcileServiceInstanceDelete(instance *v1beta1.ServiceIns
374
374
if err != nil {
375
375
if httpErr , ok := osb .IsHTTPError (err ); ok {
376
376
s := fmt .Sprintf (
377
- "Deprovision call failed; received error response from broker: Status Code: %d, Error Message: %v, Description: %v" ,
378
- httpErr .StatusCode , httpErr . ErrorMessage , httpErr . Description ,
377
+ "Deprovision call failed; received error response from broker: %v" ,
378
+ httpErr .Error () ,
379
379
)
380
380
glog .Warningf (
381
381
`%s "%s/%s": %s` ,
@@ -1319,7 +1319,7 @@ func (c *controller) pollServiceInstance(instance *v1beta1.ServiceInstance) erro
1319
1319
}
1320
1320
1321
1321
glog .V (4 ).Infof (
1322
- `%s "%s/%s": Poll returned %q : %q ` ,
1322
+ `%s "%s/%s": Poll returned %q : Response description: %v ` ,
1323
1323
typeSI , instance .Namespace , instance .Name , response .State , response .Description ,
1324
1324
)
1325
1325
@@ -1783,7 +1783,7 @@ func (c *controller) resolveClusterServicePlanRef(instance *v1beta1.ServiceInsta
1783
1783
instance .Spec .ClusterServicePlanName , instance .Spec .ClusterServiceClassName ,
1784
1784
)
1785
1785
glog .Warningf (
1786
- `%s "%s/%s": ` ,
1786
+ `%s "%s/%s": %s ` ,
1787
1787
typeSI , instance .Namespace , instance .Name , s ,
1788
1788
)
1789
1789
c .updateServiceInstanceCondition (
@@ -1869,7 +1869,7 @@ func setServiceInstanceConditionInternal(toUpdate *v1beta1.ServiceInstance,
1869
1869
1870
1870
glog .V (3 ).Infof (
1871
1871
`%s "%s/%s": Setting lastTransitionTime, condition %q to %v` ,
1872
- toUpdate .Namespace , toUpdate .Name , conditionType , t ,
1872
+ typeSI , toUpdate .Namespace , toUpdate .Name , conditionType , t ,
1873
1873
)
1874
1874
newCondition .LastTransitionTime = t
1875
1875
toUpdate .Status .Conditions = append (toUpdate .Status .Conditions , newCondition )
0 commit comments