Skip to content
Snippets Groups Projects
Commit 4a969db2 authored by Nico Vermaas's avatar Nico Vermaas
Browse files

update default priority to 100

parent 1a344218
No related branches found
No related tags found
4 merge requests!39Dev nico,!34Master,!31Master,!29Dev nico
......@@ -122,6 +122,7 @@ This is the procedure for that.
on 'test', 'acc' and 'prod' machine's:
> docker exec -it atdb-ldv python manage.py makemigrations --settings atdb.settings.docker_sdc
(this should say 'No changes detected', but do this step anyway as a check)
> docker exec -it atdb-ldv python manage.py migrate --settings atdb.settings.docker_sdc
......
......@@ -27,7 +27,7 @@ class Task(models.Model):
resume = models.BooleanField(default=True)
creationTime = models.DateTimeField(default=datetime.utcnow, blank=True)
priority = models.IntegerField(default=1, null=True)
priority = models.IntegerField(default=100, null=True)
purge_policy = models.CharField(max_length=5, default="no", blank=True, null=True)
stage_request_id = models.IntegerField(null=True)
......
......@@ -45,7 +45,7 @@
</div>
{% include 'taskdatabase/pagination.html' %}
</div>
<p class="footer"> Version 1.0.0 (25 feb 2021 - 7:00)
<p class="footer"> Version 1.0.0 (25 feb 2021 - 10:00)
<script type="text/javascript">
(function(seconds) {
var refresh,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment