Merge "devstack-plugins-list: skip openstack/openstack"

This commit is contained in:
Zuul 2020-01-23 13:56:04 +00:00 committed by Gerrit Code Review
commit 6a4c74dda8
2 changed files with 8 additions and 3 deletions

View File

@ -147,7 +147,6 @@ x/devstack-plugin-hdfs `https://opendev.org/x/devstack-plugin-
x/devstack-plugin-libvirt-qemu `https://opendev.org/x/devstack-plugin-libvirt-qemu <https://opendev.org/x/devstack-plugin-libvirt-qemu>`__ x/devstack-plugin-libvirt-qemu `https://opendev.org/x/devstack-plugin-libvirt-qemu <https://opendev.org/x/devstack-plugin-libvirt-qemu>`__
x/devstack-plugin-mariadb `https://opendev.org/x/devstack-plugin-mariadb <https://opendev.org/x/devstack-plugin-mariadb>`__ x/devstack-plugin-mariadb `https://opendev.org/x/devstack-plugin-mariadb <https://opendev.org/x/devstack-plugin-mariadb>`__
x/devstack-plugin-nfs `https://opendev.org/x/devstack-plugin-nfs <https://opendev.org/x/devstack-plugin-nfs>`__ x/devstack-plugin-nfs `https://opendev.org/x/devstack-plugin-nfs <https://opendev.org/x/devstack-plugin-nfs>`__
x/devstack-plugin-sheepdog `https://opendev.org/x/devstack-plugin-sheepdog <https://opendev.org/x/devstack-plugin-sheepdog>`__
x/devstack-plugin-vmax `https://opendev.org/x/devstack-plugin-vmax <https://opendev.org/x/devstack-plugin-vmax>`__ x/devstack-plugin-vmax `https://opendev.org/x/devstack-plugin-vmax <https://opendev.org/x/devstack-plugin-vmax>`__
x/drbd-devstack `https://opendev.org/x/drbd-devstack <https://opendev.org/x/drbd-devstack>`__ x/drbd-devstack `https://opendev.org/x/drbd-devstack <https://opendev.org/x/drbd-devstack>`__
x/fenix `https://opendev.org/x/fenix <https://opendev.org/x/fenix>`__ x/fenix `https://opendev.org/x/fenix <https://opendev.org/x/fenix>`__
@ -203,6 +202,7 @@ x/trio2o `https://opendev.org/x/trio2o <https://
x/valet `https://opendev.org/x/valet <https://opendev.org/x/valet>`__ x/valet `https://opendev.org/x/valet <https://opendev.org/x/valet>`__
x/vmware-nsx `https://opendev.org/x/vmware-nsx <https://opendev.org/x/vmware-nsx>`__ x/vmware-nsx `https://opendev.org/x/vmware-nsx <https://opendev.org/x/vmware-nsx>`__
x/vmware-vspc `https://opendev.org/x/vmware-vspc <https://opendev.org/x/vmware-vspc>`__ x/vmware-vspc `https://opendev.org/x/vmware-vspc <https://opendev.org/x/vmware-vspc>`__
x/whitebox-tempest-plugin `https://opendev.org/x/whitebox-tempest-plugin <https://opendev.org/x/whitebox-tempest-plugin>`__
======================================== === ======================================== ===

View File

@ -45,9 +45,14 @@ url = 'https://review.opendev.org/projects/'
def is_in_wanted_namespace(proj): def is_in_wanted_namespace(proj):
# only interested in openstack or x namespace (e.g. not retired # only interested in openstack or x namespace (e.g. not retired
# stackforge, etc) # stackforge, etc).
#
# openstack/openstack "super-repo" of openstack projects as
# submodules, that can cause gitea to 500 timeout and thus stop
# this script. Skip it.
if proj.startswith('stackforge/') or \ if proj.startswith('stackforge/') or \
proj.startswith('stackforge-attic/'): proj.startswith('stackforge-attic/') or \
proj == "openstack/openstack":
return False return False
else: else:
return True return True