From a8d84d5a5b0413eae4f5a6ad27d4a083d61dff51 Mon Sep 17 00:00:00 2001 From: Jude Nelson Date: Thu, 1 Jun 2017 19:41:31 -0400 Subject: [PATCH] only remove expired name-preorders. Do not do so for anything else; the registrar handles it on its own. --- blockstack_client/backend/queue.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/blockstack_client/backend/queue.py b/blockstack_client/backend/queue.py index 710b055ad..4bb041542 100644 --- a/blockstack_client/backend/queue.py +++ b/blockstack_client/backend/queue.py @@ -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):