diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-06-12 02:31:24 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-06-12 02:31:24 -0700 |
commit | 4f226e22cd720cadd7aa854eb915e7af1bab90e1 (patch) | |
tree | 9fa660b6fd573b4e67781f945a7dd9c3a7029223 /FS | |
parent | b85c4820c8050f2ed9843c9a4c72c0e5550a5b09 (diff) |
don't add fuzzy cache upgrade jobs for cust_main 2.3->3.x upgrade, RT#27856
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_main/Location.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/FS/FS/cust_main/Location.pm b/FS/FS/cust_main/Location.pm index a72a3c2bd..095bbe7b8 100644 --- a/FS/FS/cust_main/Location.pm +++ b/FS/FS/cust_main/Location.pm @@ -217,7 +217,9 @@ sub process_upgrade_location { my $class = shift; my $dbh = dbh; + local $FS::cust_main::import = 1; local $FS::cust_location::import = 1; + local $FS::contact::skip_fuzzyfiles = 1; local $FS::UID::AutoCommit = 0; my $tax_prefix = 'bill_'; |