1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

Pass, don't return pass when checking mongo connectivity

This commit is contained in:
Matthew Jones 2016-03-14 13:53:34 -04:00
parent 001eb1f69f
commit 7e818319b5

View File

@ -14,7 +14,7 @@ def drop_system_tracking_db():
pass pass
except OperationFailure: except OperationFailure:
# TODO: This means the database was up but something happened when we tried to query it # TODO: This means the database was up but something happened when we tried to query it
return pass pass
def migrate_facts(apps, schema_editor): def migrate_facts(apps, schema_editor):
Fact = apps.get_model('main', "Fact") Fact = apps.get_model('main', "Fact")