diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2018-07-31 10:29:19 -0400 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2018-07-31 10:32:08 -0400 |
| commit | d1272378cd936b65ee39901ff9d6296bae6b6ff3 (patch) | |
| tree | bbb6e44e6cdd10fda0bc4866892b5751cf951402 /FS | |
| parent | 2c013c551506131e70b5d7339f07258861f20300 (diff) | |
RT# 78356 - made status bar more responsive on export. Changed svc update to only happen when up and down speeds change.
Diffstat (limited to 'FS')
| -rw-r--r-- | FS/FS/part_export/saisei.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_export/saisei.pm b/FS/FS/part_export/saisei.pm index 617a73226..c79f79dac 100644 --- a/FS/FS/part_export/saisei.pm +++ b/FS/FS/part_export/saisei.pm @@ -830,7 +830,7 @@ sub export_provisioned_services { my $svc_count = scalar @svcs; my %status = {}; - for (my $c=10; $c <=100; $c=$c+10) { $status{int($svc_count * ($c/100))} = $c; } + for (my $c=1; $c <=100; $c=$c+1) { $status{int($svc_count * ($c/100))} = $c; } my $process_count=0; foreach my $svc (@svcs) { |
