Displaying 1 result from an estimated 1 matches for "array_of_url".
Did you mean:
array_of_urls
2008 May 14
7
A copy of XX has been removed from the module tree but is still active!
I have a class in my /lib/ directory called tracker.rb
It''s function is to receive an array of URLs and then perform 4
separate tasks on each URL
Each of the 4 tasks gets it''s own thread.
the class is called from my controller like:
output = Tracker.go([array_of_urls])
Sometimes, when it hits an exception, instead of just dieing
gracefully, my logs repeatedly display:
A copy of Tracker has been removed from the module tree but is still
active!
After this happens, I have to reboot my development server before it
will respond again.
Any ideas how or why thi...