From 9d612a26fc6d2af3f3ff8b8b79e376b8977affbf Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 19 May 2010 15:52:06 +0000 Subject: [PATCH] * Finally eliminated the dreaded 'spooling - try again in a few minutes' error, since the generation of spool files is no longer in the same locking domain as their transfer. --- citadel/modules/network/serv_network.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/citadel/modules/network/serv_network.c b/citadel/modules/network/serv_network.c index cc4b36530..f09775e85 100644 --- a/citadel/modules/network/serv_network.c +++ b/citadel/modules/network/serv_network.c @@ -2335,12 +2335,6 @@ void cmd_netp(char *cmdbuf) extract_token(node, cmdbuf, 0, '|', sizeof node); extract_token(pass, cmdbuf, 1, '|', sizeof pass); - if (doing_queue) { - CtdlLogPrintf(CTDL_WARNING, "Network node <%s> refused - spooling\n", node); - cprintf("%d spooling - try again in a few minutes\n", ERROR + RESOURCE_BUSY); - return; - } - /* load the IGnet Configuration to check node validity */ load_working_ignetcfg(); v = is_valid_node(nexthop, secret, node); -- 2.39.2