1
0
Fork 0

Lint files

Signed-off-by: Emile Vauge <emile@vauge.com>
This commit is contained in:
Emile Vauge 2017-02-02 21:07:44 +01:00
parent e9fc9fdf12
commit 54be6beaab
No known key found for this signature in database
GPG key ID: D808B4C167352E59
4 changed files with 5 additions and 5 deletions

View file

@ -505,7 +505,7 @@ func processPorts(application marathon.Application, task marathon.Task) []int {
// Using port definition if available
if application.PortDefinitions != nil && len(*application.PortDefinitions) > 0 {
ports := make([]int, 0)
var ports []int
for _, def := range *application.PortDefinitions {
if def.Port != nil {
ports = append(ports, *def.Port)
@ -515,7 +515,7 @@ func processPorts(application marathon.Application, task marathon.Task) []int {
}
// If using IP-per-task using this port definition
if application.IPAddressPerTask != nil && len(*((*application.IPAddressPerTask).Discovery).Ports) > 0 {
ports := make([]int, 0)
var ports []int
for _, def := range *((*application.IPAddressPerTask).Discovery).Ports {
ports = append(ports, def.Number)
}