From 19fb6eb2ced45109cecdeed6f2fe28fdb66fe134 Mon Sep 17 00:00:00 2001 From: NamanMahor Date: Thu, 15 Jan 2026 10:16:34 +0530 Subject: [PATCH] retry on bad connection --- runtime/reconcilers/model.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/reconcilers/model.go b/runtime/reconcilers/model.go index 0e5c80f0e10..1ef1d2aa07b 100644 --- a/runtime/reconcilers/model.go +++ b/runtime/reconcilers/model.go @@ -1360,7 +1360,7 @@ func (r *ModelReconciler) executeWithRetry(ctx context.Context, self *runtimev1. var defaultAttempts uint32 = 3 var defaultDelay uint32 = 5 defaultExponentialBackoff := true - defaultIfErrorMatches := []string{".*OvercommitTracker.*", ".*Bad Gateway.*", ".*Timeout.*"} + defaultIfErrorMatches := []string{".*OvercommitTracker.*", ".*Bad Gateway.*", ".*Timeout.*", ".*bad connection.*"} retryAttempts := mdl.Spec.RetryAttempts if retryAttempts == nil {