@@ -730,6 +730,7 @@ var _ = Describe("LRPConvergence", func() {
730
730
[]string {},
731
731
[]string {},
732
732
[]string {},
733
+ []string {},
733
734
)
734
735
cells = models.CellSet {cellId : & cellPresence }
735
736
})
@@ -891,6 +892,7 @@ var _ = Describe("LRPConvergence", func() {
891
892
[]string {},
892
893
[]string {},
893
894
[]string {},
895
+ []string {},
894
896
)
895
897
896
898
lrpKey0 = models .NewActualLRPKey (processGuid , 0 , freshDomain )
@@ -1003,7 +1005,16 @@ var _ = Describe("LRPConvergence", func() {
1003
1005
1004
1006
BeforeEach (func () {
1005
1007
cells = models.CellSet {}
1006
- cellPresence = models .NewCellPresence ("cell-id" , "cell.example.com" , "the-zone" , models .NewCellCapacity (128 , 1024 , 3 ), []string {}, []string {}, []string {})
1008
+ cellPresence = models .NewCellPresence (
1009
+ "cell-id" ,
1010
+ "cell.example.com" ,
1011
+ "the-zone" ,
1012
+ models .NewCellCapacity (128 , 1024 , 3 ),
1013
+ []string {},
1014
+ []string {},
1015
+ []string {},
1016
+ []string {},
1017
+ )
1007
1018
})
1008
1019
1009
1020
JustBeforeEach (func () {
@@ -1081,7 +1092,16 @@ var _ = Describe("LRPConvergence", func() {
1081
1092
)
1082
1093
1083
1094
JustBeforeEach (func () {
1084
- cellPresence = models .NewCellPresence ("cell-id" , "cell.example.com" , "the-zone" , models .NewCellCapacity (128 , 1024 , 3 ), []string {}, []string {}, []string {})
1095
+ cellPresence = models .NewCellPresence (
1096
+ "cell-id" ,
1097
+ "cell.example.com" ,
1098
+ "the-zone" ,
1099
+ models .NewCellCapacity (128 , 1024 , 3 ),
1100
+ []string {},
1101
+ []string {},
1102
+ []string {},
1103
+ []string {},
1104
+ )
1085
1105
cells = models.CellSet {}
1086
1106
cells ["cell-id" ] = & cellPresence
1087
1107
@@ -1192,7 +1212,16 @@ var _ = Describe("LRPConvergence", func() {
1192
1212
)
1193
1213
1194
1214
JustBeforeEach (func () {
1195
- cellPresence = models .NewCellPresence ("cell-id" , "cell.example.com" , "the-zone" , models .NewCellCapacity (128 , 1024 , 100 ), []string {}, []string {}, []string {})
1215
+ cellPresence = models .NewCellPresence (
1216
+ "cell-id" ,
1217
+ "cell.example.com" ,
1218
+ "the-zone" ,
1219
+ models .NewCellCapacity (128 , 1024 , 100 ),
1220
+ []string {},
1221
+ []string {},
1222
+ []string {},
1223
+ []string {},
1224
+ )
1196
1225
cells = models.CellSet {}
1197
1226
cells ["cell-id" ] = & cellPresence
1198
1227
@@ -1248,7 +1277,16 @@ var _ = Describe("LRPConvergence", func() {
1248
1277
)
1249
1278
1250
1279
JustBeforeEach (func () {
1251
- cellPresence = models .NewCellPresence ("cell-id" , "cell.example.com" , "the-zone" , models .NewCellCapacity (124 , 1024 , 6 ), []string {}, []string {}, []string {})
1280
+ cellPresence = models .NewCellPresence (
1281
+ "cell-id" ,
1282
+ "cell.example.com" ,
1283
+ "the-zone" ,
1284
+ models .NewCellCapacity (124 , 1024 , 6 ),
1285
+ []string {},
1286
+ []string {},
1287
+ []string {},
1288
+ []string {},
1289
+ )
1252
1290
cells = models.CellSet {}
1253
1291
cells ["cell-id" ] = & cellPresence
1254
1292
@@ -1749,7 +1787,16 @@ func newUnstartableCrashedActualLRP(d *models.DesiredLRP, index int32) *models.A
1749
1787
}
1750
1788
1751
1789
func newCellPresence (cellID string ) * models.CellPresence {
1752
- cellPresence := models .NewCellPresence (cellID , "1.2.3.4" , "az-1" , models .NewCellCapacity (128 , 1024 , 3 ), []string {}, nil , nil )
1790
+ cellPresence := models .NewCellPresence (
1791
+ cellID ,
1792
+ "1.2.3.4" ,
1793
+ "az-1" ,
1794
+ models .NewCellCapacity (128 , 1024 , 3 ),
1795
+ []string {},
1796
+ nil ,
1797
+ nil ,
1798
+ nil ,
1799
+ )
1753
1800
return & cellPresence
1754
1801
}
1755
1802
0 commit comments