Fix airflow config retries postgres migration (#12988)

This commit is contained in:
Pere Miquel Brull 2023-08-24 14:42:43 +02:00 committed by GitHub
parent 496abf0392
commit 10b1578eed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,4 +55,4 @@ CREATE TABLE IF NOT EXISTS search_index_entity (
-- We were hardcoding retries to 0. Since we are now using the IngestionPipeline to set them, keep existing ones to 0.
UPDATE ingestion_pipeline_entity
SET json = jsonb_set(json::jsonb, '{airflowConfig.retries}', '0', true);
SET json = jsonb_set(json::jsonb, '{airflowConfig,retries}', '0', true);