only remove expired name-preorders. Do not do so for anything else; the registrar handles it on its own.

This commit is contained in:
Jude Nelson
2017-06-01 19:41:31 -04:00
parent 1a98efe91e
commit a8d84d5a5b

View File

@@ -551,11 +551,12 @@ def queue_cleanall(path=DEFAULT_QUEUE_PATH, config_path=CONFIG_PATH):
"""
cleanup_preorder_queue(path=path, config_path=config_path)
cleanup_register_queue(path=path, config_path=config_path)
cleanup_update_queue(path=path, config_path=config_path )
cleanup_transfer_queue(path=path, config_path=config_path )
cleanup_renew_queue(path=path, config_path=config_path)
cleanup_revoke_queue(path=path, config_path=config_path)
# These are disabled for now, since the registrar should do this automatically
#cleanup_register_queue(path=path, config_path=config_path)
#cleanup_update_queue(path=path, config_path=config_path )
#cleanup_transfer_queue(path=path, config_path=config_path )
#cleanup_renew_queue(path=path, config_path=config_path)
#cleanup_revoke_queue(path=path, config_path=config_path)
def get_queue_state(queue_ids=None, limit=None, path=DEFAULT_QUEUE_PATH):