DSchultz_mo
DSchultz_mo

Reputation: 143

Deploy to Bluemix button will not reuse project names

I have set up the 'Deploy to Bluemix' button in my project here: https://hub.jazz.net/project/dschultz_mo/EmployeeDirectory-STARTER/overview. It works great as long as I use a new project name each time. If I use a project name that I have used in the past - even if that project has been deleted days ago - I get the message that the project name is in use (EmployeeDirectory-DWS2).

UPDATE: After trying a few more times, it seems to only be the project name EmployeeDirectory-DWS2 that it won't allow me to use. I have checked multiple times but that project name is not used in jazz.hub projects nor bluemix.net applications.

Upvotes: 1

Views: 60

Answers (1)

Jeff Sloyer
Jeff Sloyer

Reputation: 4964

Can you check to see there is not an app with the name of EmployeeDirectory-DWS2. To do this login to the Bluemix Console then click on dashboard and look through your orgs and spaces to ensure that app does not exist.

Also, you can do this with the Cloud Foundry CLI. Run the following against all your orgs and spaces.

cf apps

Run the following to check the used routes.

cf routes

You can then delete the routes with the following.

cf delete-route mybluemix.net -n HOSTNAME -f

Upvotes: 2

Related Questions