Created Gerrit groups are self owned.

* jeepyb/cmd/manage_projects.py: When creating Gerrit groups do not set
an explicit owner so that the new groups are self owned.

Fixes bug 1178022

Change-Id: I343ff5b7a4040149caa13b07bc69f15b3086225f
Reviewed-on: https://review.openstack.org/35171
Reviewed-by: Elizabeth Krumbach Joseph <lyz@princessleia.com>
Reviewed-by: James E. Blair <corvus@inaugust.com>
Approved: Jeremy Stanley <fungi@yuggoth.org>
Reviewed-by: Jeremy Stanley <fungi@yuggoth.org>
Tested-by: Jenkins
This commit is contained in:
Clark Boylan 2013-07-01 11:45:46 -07:00 committed by Jenkins
parent 7d34758716
commit 68ce329185
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ def get_group_uuid(gerrit, group):
uuid = _get_group_uuid(gerrit, group)
if uuid:
return uuid
gerrit.createGroup(group, owner="Administrators")
gerrit.createGroup(group)
uuid = _get_group_uuid(gerrit, group)
if uuid:
return uuid