@@ -30,7 +30,7 @@ var _ = Describe("Syncing", func() {
30
30
31
31
It ("restarts processes missing from diego" , func () {
32
32
appName := generator .PrefixedRandomName ("SITS" , "APP" )
33
- Expect (cf .Cf ("push" , appName , "--no-start" , "-s" , "cflinuxfs3" , "- p" , "fixtures/dora" , "-b" , "ruby_buildpack" ).Wait (Timeout )).To (Exit (0 ))
33
+ Expect (cf .Cf ("push" , appName , "--no-start" , "-p" , "fixtures/dora" , "-b" , "ruby_buildpack" ).Wait (Timeout )).To (Exit (0 ))
34
34
Expect (cf .Cf ("start" , appName ).Wait (PushTimeout )).To (Exit (0 ))
35
35
36
36
Eventually (func () string {
@@ -49,7 +49,7 @@ var _ = Describe("Syncing", func() {
49
49
50
50
It ("refreshes stale processes" , func () {
51
51
appName := generator .PrefixedRandomName ("SITS" , "APP" )
52
- Expect (cf .Cf ("push" , appName , "--no-start" , "-s" , "cflinuxfs3" , "- p" , "fixtures/dora" , "-b" , "ruby_buildpack" ).Wait (Timeout )).To (Exit (0 ))
52
+ Expect (cf .Cf ("push" , appName , "--no-start" , "-p" , "fixtures/dora" , "-b" , "ruby_buildpack" ).Wait (Timeout )).To (Exit (0 ))
53
53
Expect (cf .Cf ("start" , appName ).Wait (PushTimeout )).To (Exit (0 ))
54
54
55
55
Eventually (func () string {
@@ -95,7 +95,7 @@ var _ = Describe("Syncing", func() {
95
95
96
96
It ("cancels processes that should not be running according to CC" , func () {
97
97
appName := generator .PrefixedRandomName ("SITS" , "APP" )
98
- Expect (cf .Cf ("push" , appName , "--no-start" , "-s" , "cflinuxfs3" , "- p" , "fixtures/dora" , "-b" , "ruby_buildpack" ).Wait (Timeout )).To (Exit (0 ))
98
+ Expect (cf .Cf ("push" , appName , "--no-start" , "-p" , "fixtures/dora" , "-b" , "ruby_buildpack" ).Wait (Timeout )).To (Exit (0 ))
99
99
Expect (cf .Cf ("start" , appName ).Wait (PushTimeout )).To (Exit (0 ))
100
100
101
101
Eventually (func () string {
@@ -233,7 +233,7 @@ var _ = Describe("Syncing", func() {
233
233
It ("restores its sidecar when it's restarted" , func () {
234
234
appName := generator .PrefixedRandomName ("SITS" , "APP" )
235
235
236
- Expect (cf .Cf ("push" , appName , "--no-start" , "-s" , "cflinuxfs3" , "- p" , "fixtures/dora" , "-b" , "ruby_buildpack" ).Wait (Timeout )).To (Exit (0 ))
236
+ Expect (cf .Cf ("push" , appName , "--no-start" , "-p" , "fixtures/dora" , "-b" , "ruby_buildpack" ).Wait (Timeout )).To (Exit (0 ))
237
237
appGUID := helpers .GetAppGuid (appName )
238
238
helpers .CreateSidecar ("my_sidecar" , []string {"web" }, "sleep 100000" , appGUID )
239
239
Expect (cf .Cf ("start" , appName ).Wait (PushTimeout )).To (Exit (0 ))
@@ -280,7 +280,7 @@ var _ = Describe("Syncing", func() {
280
280
Describe ("Route syncing" , func () {
281
281
It ("Adds missing routes to copilot" , func () {
282
282
appName := generator .PrefixedRandomName ("SITS" , "APP" )
283
- Expect (cf .Cf ("push" , appName , "--no-start" , "-s" , "cflinuxfs3" , "- p" , "fixtures/dora" , "-b" , "ruby_buildpack" , "--hostname" , appName ).Wait (Timeout )).To (Exit (0 ))
283
+ Expect (cf .Cf ("push" , appName , "--no-start" , "-p" , "fixtures/dora" , "-b" , "ruby_buildpack" , "--hostname" , appName ).Wait (Timeout )).To (Exit (0 ))
284
284
Expect (cf .Cf ("start" , appName ).Wait (PushTimeout )).To (Exit (0 ))
285
285
286
286
Eventually (func () string {
@@ -327,7 +327,7 @@ var _ = Describe("Syncing", func() {
327
327
Skip ("This will need to be updated to support destinations!" )
328
328
appName := generator .PrefixedRandomName ("SITS" , "APP" )
329
329
330
- Expect (cf .Cf ("push" , appName , "--no-start" , "--no-route" , "-s" , "cflinuxfs3" , "- p" , "fixtures/dora" , "-b" , "ruby_buildpack" ).Wait (Timeout )).To (Exit (0 ))
330
+ Expect (cf .Cf ("push" , appName , "--no-start" , "--no-route" , "-p" , "fixtures/dora" , "-b" , "ruby_buildpack" ).Wait (Timeout )).To (Exit (0 ))
331
331
Expect (cf .Cf ("create-route" , testSetup .RegularUserContext ().Space , testConfig .GetAppsDomain (), "--hostname" , appName ).Wait (Timeout )).To (Exit (0 ))
332
332
333
333
appGUID := GetAppGuid (appName )
@@ -417,7 +417,7 @@ var _ = Describe("Syncing", func() {
417
417
Describe ("CAPIDiegoProcessAssociation syncing" , func () {
418
418
It ("Adds missing CAPI Diego Process Associations to copilot" , func () {
419
419
appName := generator .PrefixedRandomName ("SITS" , "APP" )
420
- Expect (cf .Cf ("push" , appName , "--no-start" , "-s" , "cflinuxfs3" , "- p" , "fixtures/dora" , "-b" , "ruby_buildpack" ).Wait (Timeout )).To (Exit (0 ))
420
+ Expect (cf .Cf ("push" , appName , "--no-start" , "-p" , "fixtures/dora" , "-b" , "ruby_buildpack" ).Wait (Timeout )).To (Exit (0 ))
421
421
Expect (cf .Cf ("start" , appName ).Wait (PushTimeout )).To (Exit (0 ))
422
422
423
423
Eventually (func () string {
0 commit comments