Skip to content

Commit

Permalink
Aumebnto el timeout de generación de dump
Browse files Browse the repository at this point in the history
timeout=0 lo toma como default de 180 segundos, lo subo a 1 hora (a futuro
se van a generar varios dumps sobre este mismo proceso)
  • Loading branch information
lucaslavandeira committed Sep 12, 2018
1 parent 87dd56a commit 105588d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion series_tiempo_ar_api/apps/dump/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from .generator.generator import DumpGenerator


@job('default', timeout=0)
@job('default', timeout='1h')
def dump_db_to_csv(task_id):
task = CSVDumpTask.objects.get(id=task_id)
try:
Expand Down

0 comments on commit 105588d

Please sign in to comment.