You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have two projects with same names on bitbucket and github. It is different projects but have the same names and same names for repositories.
Bitbucket's one is already configured and now I get "error:409 project already exists" if I try to add the repo with same name from github. As project names and repos are not global and really can have the same names it should be prefixed some how locally or fixed other way.
The text was updated successfully, but these errors were encountered:
The name is composed by the organization / repo's name, so we can suppose that your organization has the same name also.
The easy patch could be change the previous line by something like (just add a new filter by provider.id): Project.findOne({name: name, provider.id: provider.id}, projectResult);
But I don't know if this can has unexpected consequences. Maybe you can change the line, try it and if it works, do make a PR.
We have two projects with same names on bitbucket and github. It is different projects but have the same names and same names for repositories.
Bitbucket's one is already configured and now I get "error:409 project already exists" if I try to add the repo with same name from github. As project names and repos are not global and really can have the same names it should be prefixed some how locally or fixed other way.
The text was updated successfully, but these errors were encountered: