mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
10,000 stories is too high.
This commit is contained in:
parent
0bd678ba53
commit
310b594a56
1 changed files with 2 additions and 2 deletions
|
@ -47,8 +47,8 @@ class MPopularityQuery(mongo.Document):
|
|||
def queue_email(self):
|
||||
EmailPopularityQuery.delay(pk=self.pk)
|
||||
|
||||
def send_email(self):
|
||||
filename = Feed.xls_query_popularity(self.query, limit=10000)
|
||||
def send_email(self, limit=1000):
|
||||
filename = Feed.xls_query_popularity(self.query, limit=limit)
|
||||
xlsx = open(filename, "r")
|
||||
|
||||
params = {
|
||||
|
|
Loading…
Add table
Reference in a new issue