Forum

Running of Cron is ...
 
Notifications
Clear all

Running of Cron is not correctly checked

2 Posts
2 Users
0 Reactions
2,423 Views
(@burgerzs)
Posts: 24
Active Member
Topic starter
 
[#6430]

Hi,

It seems to me that when the running of Cron is checked in Cron relaunch(), then it is not taken into account that in RUNNING file there are more items, not only the time. e.g. 1578120959|879|5e1036d65c5751.75848963

Thus Cron is relaunched after a user logs in.

As a temporary correction I changed:
$last=fgets($handle);
to this:
$tmp_runningfile=fgets($handle);
$tmp_runningfile_array=explode("|",$tmp_runningfile);
$last=reset($tmp_runningfile_array);

It seems to be ok now.

Regards,
Zsolt


 
Posted : 04 Jan 2020 10H28
(@babynus)
Posts: 14952
Member Admin
 

You are right.
The changes done on Cron::check() where not done on Cron::relaunch().

Thanks for pointing out the issue and proposing a patch.
Fix will be included in V8.3.2


 
Posted : 06 Jan 2020 19H40
Share:

Scroll to Top