Browse Source

fix test_lifecycle_get

pull/5760/head
Konstantin Lebedev 6 months ago
parent
commit
8f991bdcf9
  1. 5
      weed/s3api/s3api_bucket_handlers.go

5
weed/s3api/s3api_bucket_handlers.go

@ -8,6 +8,7 @@ import (
"fmt"
"math"
"net/http"
"sort"
"strings"
"time"
@ -346,7 +347,9 @@ func (s3a *S3ApiServer) GetBucketLifecycleConfigurationHandler(w http.ResponseWr
Expiration: Expiration{Days: days, set: true},
})
}
sort.Slice(response.Rules, func(i, j int) bool {
return response.Rules[i].ID < response.Rules[j].ID
})
writeSuccessResponseXML(w, r, response)
}

Loading…
Cancel
Save