Projet

Général

Profil

0001-agent-authentic-use-http-provisionning-by-default-59.patch

Paul Marillonnet, 03 décembre 2021 12:28

Télécharger (940 octets)

Voir les différences:

Subject: [PATCH] agent/authentic: use http provisionning by default (#59312)

 hobo/agent/authentic2/provisionning.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
hobo/agent/authentic2/provisionning.py
501 501
            except IOError:
502 502
                pass
503 503

  
504
        if getattr(settings, 'HOBO_HTTP_PROVISIONNING', False):
504
        if getattr(settings, 'HOBO_HTTP_PROVISIONNING', True):
505 505
            leftover_audience = self.notify_agents_http(data, sync=sync)
506 506
            if not leftover_audience:
507 507
                return
508
-