Re: [BackupPC-users] BPC 4 very slow

2016-01-28 Thread Bowie Bailey
On 1/28/2016 9:32 AM, Gandalf Corvotempesta wrote: > 2016-01-27 23:24 GMT+01:00 Gandalf Corvotempesta > : >> I had this: >> >> $Conf{FullPeriod} = 27.97; >> >> now changed to >> >> $Conf{FullPeriod} = 7.97; >> >> just in case bpc was parsing only the first digit. >

Re: [BackupPC-users] BPC 4 very slow

2016-01-28 Thread Les Mikesell
On Thu, Jan 28, 2016 at 9:03 AM, Bowie Bailey wrote: > On 1/28/2016 9:32 AM, Gandalf Corvotempesta wrote: >>> >> Config saved by web interface: >> # grep '$Conf{FullPeriod}' config.pl >> $Conf{FullPeriod} = '6.97'; >> >> Original config, prior saving from web. >> # grep

Re: [BackupPC-users] BPC 4 very slow

2016-01-28 Thread Gandalf Corvotempesta
2016-01-28 17:42 GMT+01:00 Les Mikesell : > on the other hand there is > difference between '6.97' and 7.97. If that isn't a typo, something > odd happened. That's ok, i've changed the config through admin panel to change FullPeriod from 7.97 to 6.97 that's why I saw the

Re: [BackupPC-users] BPC 4 very slow

2016-01-28 Thread Gandalf Corvotempesta
2016-01-27 23:24 GMT+01:00 Gandalf Corvotempesta : > I had this: > > $Conf{FullPeriod} = 27.97; > > now changed to > > $Conf{FullPeriod} = 7.97; > > just in case bpc was parsing only the first digit. I've also noticed that original configuration is using float

Re: [BackupPC-users] BPC 4 very slow

2016-01-28 Thread Gandalf Corvotempesta
2016-01-28 16:03 GMT+01:00 Bowie Bailey : > This is Perl. There is no real distinction between strings, integers, > and floats. 7.97, '7.97', and "7.97" (along with a few other more > obscure variants) will all be interpreted the same. Thanks for clarification.