diff --git a/app/controlplane/internal/dispatcher/dispatcher.go b/app/controlplane/internal/dispatcher/dispatcher.go index 8e9a50b74..800be0957 100644 --- a/app/controlplane/internal/dispatcher/dispatcher.go +++ b/app/controlplane/internal/dispatcher/dispatcher.go @@ -172,7 +172,8 @@ func (d *FanOutDispatcher) initDispatchQueue(ctx context.Context, orgID, workflo creds := &sdk.Credentials{} if dbIntegration.SecretName != "" { if err := d.credentialsProvider.ReadCredentials(ctx, dbIntegration.SecretName, creds); err != nil { - return nil, fmt.Errorf("reading credentials: %w", err) + d.log.Warn("msg", "error reading credentials", "err", err.Error()) + continue } }