Optimize task manager with debug toolbar, adjust prefetch (#12588)

This commit is contained in:
Alan Rominger
2022-07-28 15:38:26 -04:00
committed by Seth Foster
parent e6f8852b05
commit f7e6a32444
6 changed files with 27 additions and 32 deletions

View File

@@ -1,4 +1,4 @@
# Generated by Django 3.2.13 on 2022-07-12 14:33
# Generated by Django 3.2.13 on 2022-08-10 14:03
from django.db import migrations, models
@@ -10,16 +10,6 @@ class Migration(migrations.Migration):
]
operations = [
migrations.AddField(
model_name='workflowapproval',
name='expires',
field=models.DateTimeField(
default=None,
editable=False,
help_text='The time this approval will expire. This is the created time plus timeout, used for filtering.',
null=True,
),
),
migrations.AddField(
model_name='unifiedjob',
name='preferred_instance_groups_cache',
@@ -30,6 +20,16 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='unifiedjob',
name='task_impact',
field=models.PositiveIntegerField(default=0, editable=False),
field=models.PositiveIntegerField(default=0, editable=False, help_text='Number of forks an instance consumes when running this job.'),
),
migrations.AddField(
model_name='workflowapproval',
name='expires',
field=models.DateTimeField(
default=None,
editable=False,
help_text='The time this approval will expire. This is the created time plus timeout, used for filtering.',
null=True,
),
),
]