diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-03-03 16:41:10 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-03-03 16:41:10 -0800 |
commit | 25e5b21adf718408a64bf4596b644c6901e5da1e (patch) | |
tree | b47b22789557a050ff38ad4610b4dbc0eca2a208 | |
parent | 1fcc14f0b94db3e5ec886ee163c20b9fe786543d (diff) |
don't queue up fuzzyfiles update jobs during contact upgrade
-rw-r--r-- | FS/FS/contact.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/FS/FS/contact.pm b/FS/FS/contact.pm index c1b558d6c..188d28779 100644 --- a/FS/FS/contact.pm +++ b/FS/FS/contact.pm @@ -970,6 +970,8 @@ sub _upgrade_data { #class method unless ( FS::upgrade_journal->is_done('contact_invoice_dest') ) { + local($skip_fuzzyfiles) = 1; + foreach my $contact (qsearch('contact', {})) { my $error = $contact->replace; die $error if $error; |