bugraoz93 commented on code in PR #43766:
URL: https://github.com/apache/airflow/pull/43766#discussion_r1834873921


##########
airflow/api_fastapi/core_api/routes/public/connections.py:
##########
@@ -180,3 +186,44 @@ async def patch_connection(
     for key, val in data.items():
         setattr(connection, key, val)
     return ConnectionResponse.model_validate(connection, from_attributes=True)
+
+
+@connections_router.post(
+    "/test",
+    responses=create_openapi_http_exception_doc(
+        [
+            status.HTTP_401_UNAUTHORIZED,
+            status.HTTP_403_FORBIDDEN,
+        ]
+    ),
+)
+async def test_connection(

Review Comment:
   I’ll definitely make those changes. I came across this PR this morning and 
realized I missed it yesterday while pushing the documentation updates. Thanks 
for pointing it out!



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to