1
0
Fork 0
mirror of https://github.com/Luzifer/s3sync.git synced 2024-10-18 06:24:20 +00:00

Updated aws-sdk

This commit is contained in:
Knut Ahlers 2015-08-01 23:57:53 +02:00
parent be8580394e
commit 81261cf76a
2 changed files with 17 additions and 17 deletions

32
Godeps/Godeps.json generated
View file

@ -4,43 +4,43 @@
"Deps": [
{
"ImportPath": "github.com/aws/aws-sdk-go/aws",
"Comment": "v0.6.4-2-g168a70b",
"Rev": "168a70b9c21a4f60166d7925b690356605907adb"
"Comment": "v0.7.1-4-g1c75632",
"Rev": "1c75632eb9b77bb3d8e6416fbd8f3e98fc1367db"
},
{
"ImportPath": "github.com/aws/aws-sdk-go/internal/endpoints",
"Comment": "v0.6.4-2-g168a70b",
"Rev": "168a70b9c21a4f60166d7925b690356605907adb"
"Comment": "v0.7.1-4-g1c75632",
"Rev": "1c75632eb9b77bb3d8e6416fbd8f3e98fc1367db"
},
{
"ImportPath": "github.com/aws/aws-sdk-go/internal/protocol/query",
"Comment": "v0.6.4-2-g168a70b",
"Rev": "168a70b9c21a4f60166d7925b690356605907adb"
"Comment": "v0.7.1-4-g1c75632",
"Rev": "1c75632eb9b77bb3d8e6416fbd8f3e98fc1367db"
},
{
"ImportPath": "github.com/aws/aws-sdk-go/internal/protocol/rest",
"Comment": "v0.6.4-2-g168a70b",
"Rev": "168a70b9c21a4f60166d7925b690356605907adb"
"Comment": "v0.7.1-4-g1c75632",
"Rev": "1c75632eb9b77bb3d8e6416fbd8f3e98fc1367db"
},
{
"ImportPath": "github.com/aws/aws-sdk-go/internal/protocol/restxml",
"Comment": "v0.6.4-2-g168a70b",
"Rev": "168a70b9c21a4f60166d7925b690356605907adb"
"Comment": "v0.7.1-4-g1c75632",
"Rev": "1c75632eb9b77bb3d8e6416fbd8f3e98fc1367db"
},
{
"ImportPath": "github.com/aws/aws-sdk-go/internal/protocol/xml/xmlutil",
"Comment": "v0.6.4-2-g168a70b",
"Rev": "168a70b9c21a4f60166d7925b690356605907adb"
"Comment": "v0.7.1-4-g1c75632",
"Rev": "1c75632eb9b77bb3d8e6416fbd8f3e98fc1367db"
},
{
"ImportPath": "github.com/aws/aws-sdk-go/internal/signer/v4",
"Comment": "v0.6.4-2-g168a70b",
"Rev": "168a70b9c21a4f60166d7925b690356605907adb"
"Comment": "v0.7.1-4-g1c75632",
"Rev": "1c75632eb9b77bb3d8e6416fbd8f3e98fc1367db"
},
{
"ImportPath": "github.com/aws/aws-sdk-go/service/s3",
"Comment": "v0.6.4-2-g168a70b",
"Rev": "168a70b9c21a4f60166d7925b690356605907adb"
"Comment": "v0.7.1-4-g1c75632",
"Rev": "1c75632eb9b77bb3d8e6416fbd8f3e98fc1367db"
},
{
"ImportPath": "github.com/inconshreveable/mousetrap",

2
s3.go
View file

@ -92,7 +92,7 @@ func (s *s3Provider) readS3FileList(bucket string, path *string, outputChan chan
in := &s3.ListObjectsInput{
Bucket: aws.String(bucket),
Prefix: path,
MaxKeys: aws.Long(1000),
MaxKeys: aws.Int64(1000),
Delimiter: aws.String("/"),
}
for {