fix(ingestion/openapi): Update method comparison for openapi (#14311)

Co-authored-by: Sergio Gómez Villamor <sgomezvillamor@gmail.com>
This commit is contained in:
kammillam 2025-08-27 11:54:53 +02:00 committed by GitHub
parent add6d88b77
commit ef11b16632
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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']}",