Skip to content

Commit

Permalink
[#2618] fix(doc): Remove description field in fileset openapi doc (#2619
Browse files Browse the repository at this point in the history
)

### What changes were proposed in this pull request?

Remove the "description" field in Fileset related APIs.

### Why are the changes needed?

Because the `description` field does not exist in the related APIs, it
should be removed, otherwise, it will lead to an issue.

Fix: #2618 

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Manually verification.
  • Loading branch information
jerryshao authored Mar 21, 2024
1 parent 44a8aef commit e1b4b18
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions docs/open-api/filesets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,6 @@ components:
name:
type: string
description: The name of the fileset
description:
type: string
description: The description of the fileset
nullable: true
type:
type: string
description: The type of the fileset
Expand Down Expand Up @@ -188,10 +184,6 @@ components:
name:
type: string
description: The name of the fileset
description:
type: string
description: The description of the fileset
nullable: true
type:
type: string
description: The type of the fileset
Expand Down Expand Up @@ -342,7 +334,6 @@ components:
FilesetCreateRequest:
value: {
"name": "fileset1",
"description": "This is a fileset",
"type": "managed",
"comment": "This is a comment",
"storageLocation": "s3://bucket/path",
Expand All @@ -357,7 +348,6 @@ components:
"code": 0,
"fileset" : {
"name": "fileset1",
"description": "This is a fileset",
"type": "managed",
"comment": "This is a comment",
"storageLocation": "s3://bucket/path",
Expand Down Expand Up @@ -387,7 +377,3 @@ components:
"java.lang.NoSuchFilesetException: Fileset does not exist"
]
}




0 comments on commit e1b4b18

Please sign in to comment.