summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--api.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/api.py b/api.py
index afe4055..d178828 100644
--- a/api.py
+++ b/api.py
@@ -127,7 +127,7 @@ class Apigrabber(object):
async def crawl_region(self, region):
"""Get the match history from a region."""
- default_diff = 15 # default job length in minutes
+ default_diff = 5 # default job length in minutes
async with self._pool.acquire() as con:
while True:
try:
@@ -207,7 +207,7 @@ class Apigrabber(object):
for region in self.regions:
await self.request_update(region)
- for _ in range(3):
+ for _ in range(5):
# supports scaling :]
asyncio.ensure_future(self.crawl_region(region))