From 37cca568f15a3aaf189afd6849fc549eae94837a Mon Sep 17 00:00:00 2001 From: Patrick Derks Date: Fri, 17 Jul 2026 16:33:41 +0200 Subject: [PATCH] fix: opensearch index not found in search This is currently just a bridge to not fail on missing index and the storefront gets stopped to work. There is a ongoing disscussion how to handle opensearch/es properly in migrations and setups for the deployment-helper. https://github.com/shopware/deployment-helper/pull/90 --- api/v1/store_env.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api/v1/store_env.go b/api/v1/store_env.go index 4dfac7a..e9eeeb3 100644 --- a/api/v1/store_env.go +++ b/api/v1/store_env.go @@ -298,6 +298,10 @@ func (s *Store) getOpensearch() []corev1.EnvVar { Name: "SHOPWARE_ES_ENABLED", Value: "1", }, + { + Name: "SHOPWARE_ES_THROW_EXCEPTION", + Value: "0", + }, { Name: "SHOPWARE_ES_INDEXING_ENABLED", Value: "1",