File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
cloudfoundry-operations/src/main/java/org/cloudfoundry/operations/applications Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -185,6 +185,8 @@ public final class DefaultApplications implements Applications {
185185
186186 private static final int CF_STAGING_ERROR = 170001 ;
187187
188+ private static final int CF_INSUFFICIENT_RESOURCES = 170008 ;
189+
188190 private static final int CF_STAGING_NOT_FINISHED = 170002 ;
189191
190192 private static final int CF_STAGING_TIME_EXPIRED = 170007 ;
@@ -1471,7 +1473,8 @@ private static Mono<ApplicationInstancesResponse> getApplicationInstances(
14711473 CF_INSTANCES_ERROR ,
14721474 CF_STAGING_NOT_FINISHED ,
14731475 CF_STAGING_TIME_EXPIRED ,
1474- CF_STAGING_ERROR ),
1476+ CF_STAGING_ERROR ,
1477+ CF_INSUFFICIENT_RESOURCES ),
14751478 t -> Mono .just (ApplicationInstancesResponse .builder ().build ()));
14761479 }
14771480
You can’t perform that action at this time.
0 commit comments