diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-08-13 12:22:29 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-08-13 12:22:29 +0200 |
commit | 7a66c4def3f86d87f3d7bd0aa763fe4b124a48b7 (patch) | |
tree | 6f01b83665230d6378a607c81cce821c025d1b16 /commcrawler/migrations | |
parent | 00d0be457177da30ee5c83456e0ffac58aed497a (diff) | |
download | Comm-on-net-7a66c4def3f86d87f3d7bd0aa763fe4b124a48b7.tar.bz2 Comm-on-net-7a66c4def3f86d87f3d7bd0aa763fe4b124a48b7.zip |
Crawl time out is now a db parameter
Diffstat (limited to 'commcrawler/migrations')
-rw-r--r-- | commcrawler/migrations/0004_crawl_time_out.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/commcrawler/migrations/0004_crawl_time_out.py b/commcrawler/migrations/0004_crawl_time_out.py new file mode 100644 index 0000000..e7dae3a --- /dev/null +++ b/commcrawler/migrations/0004_crawl_time_out.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11 on 2019-08-13 10:15 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('commcrawler', '0003_auto_20190809_1607'), + ] + + operations = [ + migrations.AddField( + model_name='crawl', + name='time_out', + field=models.PositiveIntegerField(default=10, help_text='0 for no delay', verbose_name='Maximum delay for crawling a target (minutes)'), + ), + ] |