mirror of
https://github.com/docker/compose.git
synced 2025-07-23 21:54:40 +02:00
sorting env pair array to avoid creating different cloudformation templates between calls
Signed-off-by: flaviostutz <flaviostutz@gmail.com>
This commit is contained in:
parent
dc8a432352
commit
49f2283646
@ -288,6 +288,13 @@ func createEnvironment(project *types.Project, service types.ServiceConfig) ([]e
|
|||||||
Value: value,
|
Value: value,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//order env keys for idempotence between calls
|
||||||
|
//to avoid unnecessary resource recreations on CloudFormation
|
||||||
|
sort.Slice(pairs, func(i, j int) bool {
|
||||||
|
return pairs[i].Name < pairs[j].Name
|
||||||
|
})
|
||||||
|
|
||||||
return pairs, nil
|
return pairs, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user