From 7a66c4def3f86d87f3d7bd0aa763fe4b124a48b7 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 13 Aug 2019 12:22:29 +0200 Subject: Crawl time out is now a db parameter --- commcrawler/migrations/0004_crawl_time_out.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 commcrawler/migrations/0004_crawl_time_out.py (limited to 'commcrawler/migrations') 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)'), + ), + ] -- cgit v1.2.3