don't try to assign inventory during an upgrade, #30900
authorMark Wells <mark@freeside.biz>
Wed, 15 Oct 2014 22:34:20 +0000 (15:34 -0700)
committerMark Wells <mark@freeside.biz>
Wed, 15 Oct 2014 22:34:20 +0000 (15:34 -0700)
FS/FS/svc_Common.pm

index 4a2d617..e459172 100644 (file)
@@ -804,6 +804,9 @@ If there is an error, returns the error, otherwise returns false.
 =cut
 
 sub set_auto_inventory {
+  # don't try to do this during an upgrade
+  return '' if $FS::CurrentUser::upgrade_hack;
+
   my $self = shift;
   my $old = @_ ? shift : '';