Projet

Général

Profil

0002-misc-do-not-wait-already-deployed-SP-43035.patch

Benjamin Dauvergne, 18 mai 2020 20:45

Télécharger (983 octets)

Voir les différences:

Subject: [PATCH 2/2] misc: do not wait already deployed SP (#43035)

 hobo/agent/authentic2/management/commands/hobo_deploy.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
hobo/agent/authentic2/management/commands/hobo_deploy.py
228 228
                    service['$done'] = True
229 229
                    loaded += 1
230 230

  
231
                if len(services) == loaded:
231
                if all(service.get('$done') for service in services):
232 232
                    # it's finished no need to continue
233 233
                    break
234 234

  
235
-