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)
|
||||
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 = {}
|
||||
|
|
Loading…
Add table
Reference in a new issue