From 4ae1063639ab7c689bd9145a9ae0941b66795b2f Mon Sep 17 00:00:00 2001 From: Katharina Przybill <30441792+kathap@users.noreply.github.com> Date: Tue, 27 Jan 2026 22:19:18 +0100 Subject: [PATCH] Prevent Membrane errors: don't allow blobstore_provider: nil when using fog --- .../blobstore_benchmark/templates/cloud_controller_ng.yml.erb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jobs/blobstore_benchmark/templates/cloud_controller_ng.yml.erb b/jobs/blobstore_benchmark/templates/cloud_controller_ng.yml.erb index 789ccfae23..8247b1f04c 100644 --- a/jobs/blobstore_benchmark/templates/cloud_controller_ng.yml.erb +++ b/jobs/blobstore_benchmark/templates/cloud_controller_ng.yml.erb @@ -63,6 +63,10 @@ %w[fog_connection connection_config fog_aws_storage_options fog_gcp_storage_options webdav_config].each do |hk| section[hk] = {} if section.key?(hk) && section[hk].nil? end + + if section.key?('blobstore_provider') && section['blobstore_provider'].nil? + section.delete('blobstore_provider') + end end db = link("cloud_controller_db").p("ccdb.databases").find { |d| d["tag"] == "cc" }