From: levinse Date: Fri, 10 Jun 2011 00:30:55 +0000 (+0000) Subject: DID inventory/import / bulk DID orders - phase 2, RT12754 X-Git-Tag: freeside_2_3_0~155 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=d1f17f49d35f5ab9b4fd7d9e13e3b1936a31fbc5 DID inventory/import / bulk DID orders - phase 2, RT12754 --- diff --git a/bin/import-did-inventory b/bin/import-did-inventory index 612217863..d2086a5f3 100644 --- a/bin/import-did-inventory +++ b/bin/import-did-inventory @@ -363,7 +363,7 @@ sub order { fatal("customer mismatch for vendor order #$vendor_order_id") unless ( ($o->custnum && $cust{'custnum'} && ($o->custnum == $cust{'custnum'} - || $vendor_order_id eq '293745') + || $vendor_order_id eq '293745' || $vendor_order_id eq '300001') ) || (!$o->custnum && !exists($cust{'custnum'})) @@ -400,11 +400,10 @@ sub provision { phonenum => $did, }); - # XXX: THIS LINE CAUSES PERFORMANCE TO DEGRADE AND THE SCRIPT NEVER FINISHES! WHY!? + # XXX: THIS LINE CAUSES PERFORMANCE TO DEGRADE # -unattaching the exports has no effect # -after each successive call, the time taken to complete 100 rows becomes greater # -commenting out this call results in a constant time taken to complete 100 rows - # -after 10K rows we get a random error that makes no sense my $error = $svc_phone->insert; fatal("can't insert svc_phone: $error") if $error;