This is an automated email from the ASF dual-hosted git repository.

sk0x50 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new 784e0dd5a1 IGNITE-17530 Fixed an issue that led to the inability to 
start a new node with custom config file (updated openapi.yaml). Fixes #1007
784e0dd5a1 is described below

commit 784e0dd5a16f96209d2569f687e054ce92fa44b4
Author: Vadim Pakhnushev <[email protected]>
AuthorDate: Wed Aug 24 14:33:31 2022 +0300

    IGNITE-17530 Fixed an issue that led to the inability to start a new node 
with custom config file (updated openapi.yaml). Fixes #1007
    
    Signed-off-by: Slava Koptilin <[email protected]>
---
 modules/rest/openapi/openapi.yaml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/modules/rest/openapi/openapi.yaml 
b/modules/rest/openapi/openapi.yaml
index c609314a77..8a0a361ce1 100644
--- a/modules/rest/openapi/openapi.yaml
+++ b/modules/rest/openapi/openapi.yaml
@@ -372,6 +372,16 @@ components:
             type: string
         clusterName:
           type: string
+    InvalidParam:
+      required:
+      - name
+      - reason
+      type: object
+      properties:
+        name:
+          type: string
+        reason:
+          type: string
     NetworkAddress:
       required:
       - consistentId
@@ -401,6 +411,7 @@ components:
       required:
       - code
       - detail
+      - invalidParams
       - node
       - status
       - title
@@ -424,6 +435,10 @@ components:
         traceId:
           type: string
           format: uuid
+        invalidParams:
+          type: array
+          items:
+            $ref: '#/components/schemas/InvalidParam'
     State:
       type: string
       enum:

Reply via email to