We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77dbb25 commit 11dcb85Copy full SHA for 11dcb85
CHANGELOG.md
@@ -11,6 +11,7 @@ Changes:
11
12
Bugfixes:
13
- Percent-encoded URLs in directory listings are now decoded correctly.
14
+- An issue was fixed where the immutability regex was not always respected for large containers.
15
16
# v2.0 (2017-10-16)
17
pkg/objects/swift.go
@@ -239,7 +239,7 @@ func (s *SwiftLocation) DiscoverExistingFiles(matcher Matcher) error {
239
prefix += "/"
240
}
241
242
- paths, err := s.Connection.ObjectNames(s.ContainerName, &swift.ObjectsOpts{
+ paths, err := s.Connection.ObjectNamesAll(s.ContainerName, &swift.ObjectsOpts{
243
Prefix: prefix,
244
})
245
if err != nil {
0 commit comments