Small code enhancements on providers

This commit is contained in:
Vincent Demeester 2018-08-01 16:58:03 +02:00 committed by Traefiker Bot
parent 6f6ebb8025
commit 43d22d7a2f
6 changed files with 9 additions and 16 deletions

View file

@ -53,7 +53,6 @@ type portMapping struct {
}
type machine struct {
name string
state string
privateIP string
ports []portMapping
@ -108,8 +107,8 @@ func (p *Provider) createClient() (*awsClient, error) {
}
return &awsClient{
ecs.New(sess, cfg),
ec2.New(sess, cfg),
ecs: ecs.New(sess, cfg),
ec2: ec2.New(sess, cfg),
}, nil
}
@ -419,7 +418,7 @@ func (p *Provider) loadECSConfig(ctx context.Context, client *awsClient) (*types
func (p *Provider) chunkIDs(ids []*string) [][]*string {
var chuncked [][]*string
for i := 0; i < len(ids); i += 100 {
sliceEnd := -1
var sliceEnd int
if i+100 < len(ids) {
sliceEnd = i + 100
} else {