mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
Removed threads
This commit is contained in:
parent
9ba207b987
commit
dd4b42a10a
1 changed files with 4 additions and 4 deletions
|
@ -33,11 +33,11 @@ def refresh_all_feeds(request):
|
||||||
force_update = False # request.GET.get('force', False)
|
force_update = False # request.GET.get('force', False)
|
||||||
feeds = Feed.objects.all()
|
feeds = Feed.objects.all()
|
||||||
|
|
||||||
t = threading.Thread(target=refresh_feeds,
|
# t = threading.Thread(target=refresh_feeds,
|
||||||
args=[feeds])
|
args=[feeds])
|
||||||
t.setDaemon(True)
|
# t.setDaemon(True)
|
||||||
t.start()
|
# t.start()
|
||||||
|
refresh_feeds(feeds)
|
||||||
# feeds = fetch_feeds(force_update, feeds)
|
# feeds = fetch_feeds(force_update, feeds)
|
||||||
|
|
||||||
context = {}
|
context = {}
|
||||||
|
|
Loading…
Add table
Reference in a new issue