pierrejeambrun commented on code in PR #43841:
URL: https://github.com/apache/airflow/pull/43841#discussion_r1846181868
##########
airflow/api_fastapi/core_api/openapi/v1-generated.yaml:
##########
@@ -1439,6 +1442,154 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
+ /public/config/:
+ get:
+ tags:
+ - Config
+ summary: Get Config
+ operationId: get_config
+ parameters:
+ - name: section
+ in: query
+ required: false
+ schema:
+ anyOf:
+ - type: string
+ - type: 'null'
+ title: Section
+ - name: accept
+ in: header
+ required: false
+ schema:
+ type: string
+ enum:
+ - application/json
+ - text/plain
+ default: '*/*'
+ title: Accept
+ responses:
+ '200':
+ description: Successful Response
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/Config'
+ text/plain:
+ schema:
+ type: string
+ example: '[core]
+
+ dags_folder = /opt/airflow/dags
+
+ base_log_folder = /opt/airflow/logs
+
+ '
Review Comment:
Here we need at least 2 sections (as in the legacy doc) to show that
multiples sections are returned in comparison to the other endpoint.
--
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]