From b6cda90c3d392c8b835f1c939252ace6e5e4426d Mon Sep 17 00:00:00 2001 From: Seth Boyles Date: Fri, 20 Sep 2024 14:47:32 -0700 Subject: [PATCH] Make STOPPING state optional * STOPPING state could be a breaking changee --- jobs/cloud_controller_ng/spec | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/jobs/cloud_controller_ng/spec b/jobs/cloud_controller_ng/spec index 15cf620136..02b15b1fd0 100644 --- a/jobs/cloud_controller_ng/spec +++ b/jobs/cloud_controller_ng/spec @@ -227,7 +227,9 @@ provides: - cc.experimental.use_puma_webserver - cc.experimental.use_redis - cc.app_log_revision + - cc.app_instance_stopping_state - cc.deprecated_stacks + consumes: - name: database @@ -813,6 +815,9 @@ properties: cc.app_log_revision: default: false description: "Add revision version to an app's log source. Only applies if an App is using revisions. For example, app logs will be prefixed with APP/REV/1/PROC/WEB/0" + cc.app_instance_stopping_state: + default: true + description: "Adds a STOPPING state to app processes to indicate when a process is no longer desired, but has not fully shut down." cc.client_max_body_size: default: "15M" description: "Maximum body size for nginx"