From f500c739417b42ef0d99e34b502e81cbb11010d6 Mon Sep 17 00:00:00 2001 From: ulixius9 Date: Tue, 4 Feb 2025 20:47:46 +0530 Subject: [PATCH] bump ingestion version --- ingestion/Dockerfile | 2 +- ingestion/operators/docker/Dockerfile | 2 +- ingestion/pyproject.toml | 2 +- .../metadata/ingestion/source/database/snowflake/queries.py | 4 ++-- openmetadata-airflow-apis/pyproject.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ingestion/Dockerfile b/ingestion/Dockerfile index 174f09f092b..5e637cba171 100644 --- a/ingestion/Dockerfile +++ b/ingestion/Dockerfile @@ -76,7 +76,7 @@ ARG INGESTION_DEPENDENCY="all" ENV PIP_NO_CACHE_DIR=1 # Make pip silent ENV PIP_QUIET=1 -ARG RI_VERSION="1.6.3.1" +ARG RI_VERSION="1.6.3.2" RUN pip install --upgrade pip RUN pip install "openmetadata-managed-apis~=${RI_VERSION}" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.9.1/constraints-3.10.txt" RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]~=${RI_VERSION}" diff --git a/ingestion/operators/docker/Dockerfile b/ingestion/operators/docker/Dockerfile index adcf31666a4..da56b669f65 100644 --- a/ingestion/operators/docker/Dockerfile +++ b/ingestion/operators/docker/Dockerfile @@ -81,7 +81,7 @@ ENV PIP_QUIET=1 RUN pip install --upgrade pip ARG INGESTION_DEPENDENCY="all" -ARG RI_VERSION="1.6.3.1" +ARG RI_VERSION="1.6.3.2" RUN pip install --upgrade pip RUN pip install "openmetadata-ingestion[airflow]~=${RI_VERSION}" RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]~=${RI_VERSION}" diff --git a/ingestion/pyproject.toml b/ingestion/pyproject.toml index dd05bf61ff1..5e60466b580 100644 --- a/ingestion/pyproject.toml +++ b/ingestion/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" # since it helps us organize and isolate version management [project] name = "openmetadata-ingestion" -version = "1.6.3.1" +version = "1.6.3.2" dynamic = ["readme", "dependencies", "optional-dependencies"] authors = [ { name = "OpenMetadata Committers" } diff --git a/ingestion/src/metadata/ingestion/source/database/snowflake/queries.py b/ingestion/src/metadata/ingestion/source/database/snowflake/queries.py index a0a4b819c0c..66bf3201103 100644 --- a/ingestion/src/metadata/ingestion/source/database/snowflake/queries.py +++ b/ingestion/src/metadata/ingestion/source/database/snowflake/queries.py @@ -299,7 +299,7 @@ SELECT FROM SNOWFLAKE.ACCOUNT_USAGE.PROCEDURES WHERE PROCEDURE_CATALOG = '{database_name}' AND PROCEDURE_SCHEMA = '{schema_name}' - AND DELETED IS NOT NULL + AND DELETED IS NULL """ ) @@ -316,7 +316,7 @@ SELECT FROM SNOWFLAKE.ACCOUNT_USAGE.FUNCTIONS WHERE FUNCTION_CATALOG = '{database_name}' AND FUNCTION_SCHEMA = '{schema_name}' - AND DELETED IS NOT NULL + AND DELETED IS NULL """ ) diff --git a/openmetadata-airflow-apis/pyproject.toml b/openmetadata-airflow-apis/pyproject.toml index 8c491499a8f..a06d484f5db 100644 --- a/openmetadata-airflow-apis/pyproject.toml +++ b/openmetadata-airflow-apis/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" # since it helps us organize and isolate version management [project] name = "openmetadata_managed_apis" -version = "1.6.3.1" +version = "1.6.3.2" readme = "README.md" authors = [ {name = "OpenMetadata Committers"}