django.conf.settings.INVENTORY - python examples

Here are the examples of the python api django.conf.settings.INVENTORY taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 View Complete Implementation : validate_private_volumes.py
Copyright MIT License
Author : harvard-lil
@celery.shared_task
def validate_private_volumes():
    wipe_redis_db()
    chord_result = read_inventory_files(
        storage_name='private_inventory_storage',
        manifest_path_prefix=settings.INVENTORY['private_manifest_path_prefix'])

    # run chord with callback for next step
    chord_result(validate_private_volumes_step_two.si())