We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b122cb9 commit 4c51b25Copy full SHA for 4c51b25
pkg/controller/controller_instance.go
@@ -858,16 +858,7 @@ func (c *controller) reconcileServiceInstance(instance *v1beta1.ServiceInstance)
858
859
urlErr, ok := err.(*url.Error)
860
if ok && urlErr.Timeout() {
861
- var (
862
- reason string
863
- message string
864
- )
865
- if isProvisioning {
866
- reason = errorErrorCallingProvisionReason
867
- } else {
868
- reason = errorErrorCallingUpdateInstanceReason
869
- }
870
- message = "Communication with the ClusterServiceBroker timed out; operation will not be retried: " + s
+ message := "Communication with the ClusterServiceBroker timed out; operation will not be retried: " + s
871
// Communication to the broker timed out. Treat as terminal failure and
872
// begin orphan mitigation.
873
0 commit comments