Skip to content

Commit

Permalink
Closed Handle 170008 Insufficient Resources from CC when fetching app…
Browse files Browse the repository at this point in the history
…lication instance information

See: cloudfoundry#1240
  • Loading branch information
vmware-todd-robbins authored Sep 10, 2024
1 parent 1fffc4c commit ee24f06
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@ public final class DefaultApplications implements Applications {

private static final int CF_STAGING_ERROR = 170001;

private static final int CF_INSUFFICIENT_RESOURCES = 170008;

private static final int CF_STAGING_NOT_FINISHED = 170002;

private static final int CF_STAGING_TIME_EXPIRED = 170007;
Expand Down Expand Up @@ -1471,7 +1473,8 @@ private static Mono<ApplicationInstancesResponse> getApplicationInstances(
CF_INSTANCES_ERROR,
CF_STAGING_NOT_FINISHED,
CF_STAGING_TIME_EXPIRED,
CF_STAGING_ERROR),
CF_STAGING_ERROR,
CF_INSUFFICIENT_RESOURCES),
t -> Mono.just(ApplicationInstancesResponse.builder().build()));
}

Expand Down

0 comments on commit ee24f06

Please sign in to comment.