Skip to content

Commit 365c6f2

Browse files
committed
Add increased application upload timeouts for installation
1 parent f63dbad commit 365c6f2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Diff for: Actors/CalculatorActor/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ ActorServiceManifestlocation="$ActorServiceManifestlocation/ServiceManifest.xml"
99
cp $ActorServiceManifestlocationLinux $ActorServiceManifestlocation
1010
cp dotnet-include.sh ./CalculatorActorApplication/CalculatorActorPkg/Code
1111
cp dotnet-include.sh ./CalculatorActorTestClient
12-
sfctl application upload --path $appPkg --show-progress
12+
sfctl application upload --path $appPkg --show-progress -t 1200
1313
sfctl application provision --application-type-build-path CalculatorActorApplication
1414
sfctl application create --app-name fabric:/CalculatorActorApplication --app-type CalculatorActorApplicationType --app-version 1.0.0

Diff for: Actors/CounterActor/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ cp $ActorServiceManifestlocationLinux $ActorServiceManifestlocation
3434
cp dotnet-include.sh ./CounterActorApplicationCSharp/CounterActorPkg/Code
3535
cp dotnet-include.sh ./CounterActorApplicationCSharp/CounterActorWebServicePkg/Code
3636
cp dotnet-include.sh ./CounterActorTestClient
37-
sfctl application upload --path $appPkg --show-progress
37+
sfctl application upload --path $appPkg --show-progress -t 1200
3838
sfctl application provision --application-type-build-path CounterActorApplicationCSharp
3939
if [ $# -eq 0 ]
4040
then

Diff for: Actors/VisualObjects/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ActorServiceManifestlocation="$ActorServiceManifestlocation/ServiceManifest.xml"
3131
cp $ActorServiceManifestlocationLinux $ActorServiceManifestlocation
3232
cp dotnet-include.sh ./VisualObjectsApplicationCSharp/VisualObjects.ActorServicePkg/Code
3333
cp dotnet-include.sh ./VisualObjectsApplicationCSharp/VisualObjects.WebServicePkg/Code
34-
sfctl application upload --path $appPkg --show-progress
34+
sfctl application upload --path $appPkg --show-progress -t 1200
3535
sfctl application provision --application-type-build-path VisualObjectsApplicationCSharp
3636
if [ $# -eq 0 ]
3737
then

Diff for: Services/CounterService/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ StatefulServiceManifestlocation="$StatefulServiceManifestlocation/ServiceManifes
3333
cp $StatefulServiceManifestlocationLinux $StatefulServiceManifestlocation
3434
cp dotnet-include.sh ./CounterServiceApplication/CounterServicePkg/Code
3535
cp dotnet-include.sh ./CounterServiceApplication/CounterServiceWebServicePkg/Code
36-
sfctl application upload --path CounterServiceApplication --show-progress
36+
sfctl application upload --path CounterServiceApplication --show-progress -t 1200
3737
sfctl application provision --application-type-build-path CounterServiceApplication
3838
if [ $# -eq 0 ]
3939
then

0 commit comments

Comments
 (0)