Skip to content
Snippets Groups Projects
Commit bc2d1a5a authored by roadscape's avatar roadscape
Browse files

up pstat limit to 250

parent 4f54da33
No related branches found
No related tags found
No related merge requests found
...@@ -18,10 +18,10 @@ def _row(row): ...@@ -18,10 +18,10 @@ def _row(row):
return (url, label, float(row['payout']), row['posts'], row['authors']) return (url, label, float(row['payout']), row['posts'], row['authors'])
@return_error_info @return_error_info
async def get_payout_stats(context, limit=100): async def get_payout_stats(context, limit=250):
"""Get payout stats for building treemap.""" """Get payout stats for building treemap."""
db = context['db'] db = context['db']
limit = valid_limit(limit, 100) limit = valid_limit(limit, 250)
stats = PayoutStats.instance() stats = PayoutStats.instance()
await stats.generate() await stats.generate()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment