handle BrowserUnavailable exceptions in the enqueue_profiles task

This commit is contained in:
Romain Bignon 2010-05-28 13:45:27 +02:00
commit 478ce235ed

View file

@ -1,16 +1,16 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright(C) 2010 Romain Bignon, Christophe Benz # Copyright(C) 2010 Romain Bignon, Christophe Benz
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License. # the Free Software Foundation, version 3 of the License.
# #
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
@ -48,11 +48,14 @@ class ProfilesWalker(object):
self.event = None self.event = None
def enqueue_profiles(self): def enqueue_profiles(self):
with self.browser: try:
profiles_to_visit = self.browser.search_profiles().difference(self.visited_profiles) with self.browser:
info(u'Enqueuing profiles to visit: %s' % profiles_to_visit) profiles_to_visit = self.browser.search_profiles().difference(self.visited_profiles)
self.profiles_queue.update(profiles_to_visit) info(u'Enqueuing profiles to visit: %s' % profiles_to_visit)
self.save() self.profiles_queue.update(profiles_to_visit)
self.save()
except BrowserUnavailable:
return
def view_profile(self): def view_profile(self):
try: try: