This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from celery.worker.control import control_command | |
from celery.worker import state as worker_state | |
@control_command( | |
args=[('n', float)], | |
signature='[N=0]', # <- used for help on the command-line. | |
) | |
def purge_revoked(state, n=0): |