Projet

Général

Profil

0001-misc-flush-output-in-migrate-command-63954.patch

Thomas Noël, 15 avril 2022 02:41

Télécharger (982 octets)

Voir les différences:

Subject: [PATCH] misc: flush output in migrate command (#63954)

 wcs/qommon/management/commands/migrate.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
wcs/qommon/management/commands/migrate.py
32 32
            pub.set_tenant(tenant)
33 33
            if pub.is_using_postgresql():
34 34
                if verbosity:
35
                    print('Running migrations for', tenant.hostname)
35
                    print('Running migrations for', tenant.hostname, flush=True)
36 36
                pub.migrate_sql()
37 37
                pub.cleanup()
38 38
            quixote.cleanup()
39
-