Removed threads

This commit is contained in:
Samuel Clay 2009-07-06 02:47:00 +00:00
parent 9ba207b987
commit dd4b42a10a

View file

@ -33,11 +33,11 @@ def refresh_all_feeds(request):
force_update = False # request.GET.get('force', False)
feeds = Feed.objects.all()
t = threading.Thread(target=refresh_feeds,
# t = threading.Thread(target=refresh_feeds,
args=[feeds])
t.setDaemon(True)
t.start()
# t.setDaemon(True)
# t.start()
refresh_feeds(feeds)
# feeds = fetch_feeds(force_update, feeds)
context = {}