This is an automated email from the ASF dual-hosted git repository.
smgoller pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new 7e0f67b Delete instances, don't stop them. (#2666)
7e0f67b is described below
commit 7e0f67bab3055d7ea715c6c1b4d64cfb48024d5b
Author: Sean Goller <[email protected]>
AuthorDate: Fri Oct 19 09:44:12 2018 -0700
Delete instances, don't stop them. (#2666)
Co-authored-by: Sean Goller <[email protected]>
Co-authored-by: Jacob Barrett <[email protected]>
---
ci/scripts/stop_instance.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ci/scripts/stop_instance.sh b/ci/scripts/stop_instance.sh
index 7532a85..62b4697 100755
--- a/ci/scripts/stop_instance.sh
+++ b/ci/scripts/stop_instance.sh
@@ -35,6 +35,6 @@ ZONE="$(cat instance-data/zone)"
echo 'StrictHostKeyChecking no' >> /etc/ssh/ssh_config
-gcloud compute instances stop ${INSTANCE_NAME} \
+gcloud compute instances delete ${INSTANCE_NAME} \
--zone=${ZONE} \
--quiet