forked from TrueCloudLab/frostfs-s3-gw
[#155] Fixed empty delimiter response
Signed-off-by: Denis Kirillov <denis@nspcc.ru>
This commit is contained in:
parent
b004996d51
commit
5fb4c4fad6
1 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ type ListObjectsV2Response struct {
|
|||
|
||||
KeyCount int
|
||||
MaxKeys int
|
||||
Delimiter string
|
||||
Delimiter string `xml:"Delimiter,omitempty"`
|
||||
// A flag that indicates whether or not ListObjects returned all of the results
|
||||
// that satisfied the search criteria.
|
||||
IsTruncated bool
|
||||
|
@ -75,7 +75,7 @@ type ListObjectsResponse struct {
|
|||
NextMarker string `xml:"NextMarker,omitempty"`
|
||||
|
||||
MaxKeys int
|
||||
Delimiter string
|
||||
Delimiter string `xml:"Delimiter,omitempty"`
|
||||
// A flag that indicates whether or not ListObjects returned all of the results
|
||||
// that satisfied the search criteria.
|
||||
IsTruncated bool
|
||||
|
|
Loading…
Reference in a new issue