Skip to content
Snippets Groups Projects
Unverified Commit e1265b2e authored by Maxime Guyot's avatar Maxime Guyot Committed by GitHub
Browse files

Fix order of OS CI cleanup (#6714)

parent 1721460d
No related branches found
No related tags found
No related merge requests found
......@@ -34,14 +34,14 @@ def main():
conn = openstack.connect()
print('Security groups...')
map_if_old(conn.network.delete_security_group,
conn.network.security_groups())
print('Servers...')
map_if_old(conn.compute.delete_server,
conn.compute.servers())
print('Security groups...')
map_if_old(conn.network.delete_security_group,
conn.network.security_groups())
print('Subnets...')
map_if_old(conn.network.delete_subnet,
conn.network.subnets())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment