Exemple #1
0
def resume(url, config):
    """Resumes processing of queues, that where suspended with `rq suspend`"""
    connection = connect(url, config)
    connection_resume(connection)
    click.echo("Resuming workers.")
Exemple #2
0
def resume(url, config):
    """Resumes processing of queues, that where suspended with `rq suspend`"""
    connection = connect(url, config)
    connection_resume(connection)
    click.echo("Resuming workers.")
Exemple #3
0
def resume(cli_config, **options):
    """Resumes processing of queues, that were suspended with `rq suspend`"""
    connection_resume(cli_config.connection)
    click.echo("Resuming workers.")
Exemple #4
0
Fichier : cli.py Projet : selwin/rq
def resume(cli_config, **options):
    """Resumes processing of queues, that where suspended with `rq suspend`"""
    connection_resume(cli_config.connection)
    click.echo("Resuming workers.")