From ef11b16632f83d4dc4e5e991b13dcb4c29cf6d0e Mon Sep 17 00:00:00 2001 From: kammillam <39959642+kammillam@users.noreply.github.com> Date: Wed, 27 Aug 2025 11:54:53 +0200 Subject: [PATCH] fix(ingestion/openapi): Update method comparison for openapi (#14311) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sergio Gómez Villamor --- metadata-ingestion/src/datahub/ingestion/source/openapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata-ingestion/src/datahub/ingestion/source/openapi.py b/metadata-ingestion/src/datahub/ingestion/source/openapi.py index 852280ad66..8b1ee66162 100755 --- a/metadata-ingestion/src/datahub/ingestion/source/openapi.py +++ b/metadata-ingestion/src/datahub/ingestion/source/openapi.py @@ -333,7 +333,7 @@ class APISource(Source, ABC): ), ) yield wu - elif endpoint_dets["method"] != "get": + elif endpoint_dets["method"] != "GET": self.report.report_warning( title="Failed to Extract Endpoint Metadata", message=f"No example provided for {endpoint_dets['method']}",