Hello, when you deploy a new App Engine app version and do not specify a specific version, App Engine will create a new version automatically. You can see them in the Web UI under *App Engine > Versions* or in the shell: gcloud app versions list
Many users utilize versions using traffic split to perform A/B testing or soft migrations. If something goes wrong during the rollout of a new feature, they can easily direct traffic back to an older version. If you do not want to utilize versions, you could just specify the same version at every deployment of your App Engine app, for example: gcloud app deploy --version=v123 . If version *v123* already exists, App Engine will replace it, and you will not see a growing list of versions. However, if you care for availability of your app, I would recommend to deploy into separate versions and make use of this feature. On Thu, Jun 28, 2018 at 10:38 PM Guy Dviri <[email protected]> wrote: > no it's just a small app ,not even up to the air , i don't know why i > have 200 version i only need one.. > what could i doing wrong.. > > i using endpoint + sql + bigstore . > i deploy my module using : > > console : appenginedeploy > > what do you think could trigger this behavior ? > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/google-appengine. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-appengine/17eec7eb-5203-4c27-bee0-e922010d38b7%40googlegroups.com > <https://groups.google.com/d/msgid/google-appengine/17eec7eb-5203-4c27-bee0-e922010d38b7%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/CALdDuQ6RVmBpUF11Mxn6nidihTfnuj4NQJdQqeqrG1ZJZy0mhA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
