04-19-2012, 12:11 AM
Hi,
the file-representation of the queue of one of my agents (named ".tmp/[hash].queue") was an empty file. The effect was an error message "Sorry, that test location already has too many tests pending. Pleasy try again later." (from runtest.php) every time a test for respective agent was run.
I just deleted the hash-file representing the queue and everything works again (file was written newly).
Any experience with that? Any idea which process could clear the file-representation of queue?
Maybe line 1586 in function LoadJobQueue (common.inc)
should proof whether file is empty, too:
Regards Nils
the file-representation of the queue of one of my agents (named ".tmp/[hash].queue") was an empty file. The effect was an error message "Sorry, that test location already has too many tests pending. Pleasy try again later." (from runtest.php) every time a test for respective agent was run.
I just deleted the hash-file representing the queue and everything works again (file was written newly).
Any experience with that? Any idea which process could clear the file-representation of queue?
Maybe line 1586 in function LoadJobQueue (common.inc)
Code:
if(is_file($queueFile))
Code:
if(is_file($queueFile) && !(file_get_contents($queueFile) == ''))