Commit Graph

1191 Commits

Author SHA1 Message Date
Ruben
7892aef70a Add a warning for misconfiguration. (#509)
* Add a warning  for misconfiguration.

As specified in the docs, by default the settings result in a configuration where slow tasks that run for more than 60s cause repeated running of tasks, which has caused a few issues. This warning doesn't change the defaults, which would be a marge larger change, but instead provides a, hopefully, helpful message to the user.

* fixed missing bracket

* Update conf.py

fixed spelling

* Update conf.py

Made bool work for python 3.6+

* Fixing typo

Co-authored-by: Ilan Steemers <koed00@gmail.com>
2021-02-26 13:54:56 +01:00
Ilan Steemers
7d03536e89 Migrate to Github Action CI (#507)
* Some small refactors

* Initial test script

* Fixes django matrix

* Trying to set up Disque

* Disque as a docker service

* lowercase action name

* Remove Travis

* Replaces Travis badge with Github actions badge

* Show django version in step

* Typo
2021-02-14 18:59:04 +01:00
Ilan Steemers
e2580051bc Updates testing requirements 2021-02-11 20:22:33 +01:00
Ilan Steemers
d2709d707d Fixes title underline length 2021-02-11 19:16:54 +01:00
Ilan Steemers
f322eed7ac Merge pull request #502 from telmobarros/master
Add broker name in Schedule and enhanced Queued Tasks list display admin
2021-02-11 17:51:32 +01:00
Telmo Barros
c838fa82e4 Add broker name in Schedule docs 2021-02-11 13:04:00 +00:00
Ilan Steemers
8d75fb92f0 Merge pull request #504 from pysean3/add-health-check-example
Add example of http health check
2021-02-10 09:47:16 +01:00
Sean Fairbanks
24ac5b33f8 Add example of health check url
An example of a local python http server which returns a 200 or 500 response depending on cluster health.
2021-02-09 22:22:46 -08:00
Telmo Barros
1d6d996fd0 enhanced admin ormq panel fix and schedules with broker_name 2021-02-06 18:52:17 +00:00
Telmo Barros
10df8351ff Queued tasks admin list page enhancement 2021-02-06 17:56:03 +00:00
Ilan Steemers
6f0b24cdc4 Merge pull request #499 from jonaswinkler/german-translation
Added german translation
2021-01-15 17:35:37 +01:00
Ilan Steemers
3ded8505c1 Merge pull request #497 from MaximilianKindshofer/patch-1
Update brokers.rst
2021-01-15 17:31:30 +01:00
Jonas Winkler
11744bf33c Added german translation 2021-01-15 15:54:47 +01:00
Maximilian Kindshofer
ba38e2e22c Update brokers.rst 2021-01-11 14:52:03 +01:00
Ilan Steemers
13632da35f Updates changelog to 1.3.4 2020-10-29 10:07:17 +01:00
Ilan Steemers
552af9db8c Getting read for 1.3.4 2020-10-26 10:59:13 +01:00
Ilan Steemers
617becd9b3 Updates requirements 2020-10-26 10:58:14 +01:00
Ilan Steemers
d2e4101c91 Updates dependencies for tests 2020-10-22 16:16:46 +02:00
Ilan Steemers
6184a1c662 Merge pull request #478 from fallenhitokiri/sqs-get-queue-before-create
try to get SQS queue before creating it
2020-10-20 14:05:31 +02:00
Ilan Steemers
87390509ef Merge pull request #477 from fallenhitokiri/fix-get-broker-sqs
empty dictionary as configuration value for SQS
2020-10-20 14:04:30 +02:00
Ilan Steemers
d97e7d772f Merge pull request #479 from alx-sdv/bugs/model-str
Model.__unicode__() has no effect in Python 3.X
2020-10-20 14:01:40 +02:00
Ilan Steemers
6886c8612b Merge pull request #483 from Djailla/warning
Fix deprecation warning RemovedInDjango40Warning
2020-10-20 14:00:47 +02:00
Ilan Steemers
9219116bae Merge pull request #482 from ihuk/master
Fix for #424
2020-10-20 13:58:34 +02:00
Bastien Vallet
3144d0c80a Fix deprecation warning RemovedInDjango40Warning
RemovedInDjango40Warning: The providing_args argument is deprecated. As it is purely documentational, it has no replacement. If you rely on this argument as documentation, you can move the text to a code comment or docstring.
2020-10-19 12:12:37 +02:00
ihuk
5076367168 More work on fix for #424 - TypeError: can't pickle _thread.lock objects.
AWS and Mongo brockers should be pickeled correctly now.
2020-10-16 18:40:26 +02:00
ihuk
8b3d6b7d2a Initial work on fix for #424 - TypeError: can't pickle _thread.lock objects.
Made `Broker` and `Queue` classes pickable which fixes the the problem with new default `spawn` proces start method.
2020-10-14 22:21:40 +02:00
Ilan Steemers
22b6f8ec5a Merge pull request #481 from jagu2012/master
[WIP]Change Django documentation links and URLs to a supported version (v1.8 -> v2.2)
2020-10-07 11:26:21 +02:00
Daniel Trembath
3e8fc91d46 Change Django documentation URLs from v1.8 to v2.2
URLs were linking to a now unsupported version of Django. Django v2.2 is a LTS version, and also matches the documentation intersphinx_mapping in docs/conf.py.
2020-10-07 17:56:23 +11:00
Ilan Steemers
029fd316f4 Upgrades to Django 3.1.2 for tests 2020-10-05 12:01:18 +02:00
alx-sdv
28197dc4fa Model.__unicode__() has no effect 2020-10-05 12:30:11 +03:00
Timo Zimmermann
9be4da76c1 try to get SQS queue before creating it
In some environments permissions for an IAM role or access key might not include "SQS create".
The broker should first try to get the queue and if this fails try to create it as fall back to the current default behaviour.
2020-09-22 15:58:06 +02:00
Timo Zimmermann
73ca8edcf5 empty dictionary as configuration value for SQS
The [documentation](https://django-q.readthedocs.io/en/latest/configure.html#sqs-configuration) lists all keys as optional, but the way `get_broker` is implemented it will evaluate to false and return Redis. One way around this would be checking if the type of `Conf.SQS` is `dict`.
2020-09-22 15:42:38 +02:00
Ilan Steemers
7b4c357128 Updates test to django 3.1.1 2020-09-06 11:48:24 +02:00
Ilan Steemers
75ccc9e29a Removes testing code 2020-09-06 11:26:00 +02:00
Ilan Steemers
180e8e2d3d Updates changelog to 1.3.3 2020-08-16 19:01:20 +02:00
Ilan Steemers
aba36e2884 Getting ready for 1.3.3 2020-08-16 18:47:55 +02:00
Ilan Steemers
109d078510 Fixes doc code block 2020-08-15 10:30:35 +02:00
Ilan Steemers
80aa160d9d Merge pull request #466 from timomeara/master
Add attempt_count to limit the number of times a filed task will be re-attempted
2020-08-15 10:21:33 +02:00
Tim O'Meara
655f0aadb5 rename config var to max_retries, remove attempt_count form admin , add admin ui customization to docs 2020-08-13 11:58:00 -05:00
Ilan Steemers
c838a1e1d0 Updates requirements 2020-08-13 12:07:35 +02:00
Tim O'Meara
991cca5844 Revert "version bump"
This reverts commit 3b2f444738.
2020-08-11 17:32:48 -05:00
Tim O'Meara
3b2f444738 version bump 2020-08-11 17:32:08 -05:00
Tim O'Meara
f26de929d6 adds tests 2020-08-11 11:48:23 -05:00
Tim O'Meara
d5a0363af3 add attempt_count to admin 2020-08-11 10:48:46 -05:00
Tim O'Meara
45b0b2cc27 add attempt_count to config docs, set value to 1 in inital task save 2020-08-11 10:42:28 -05:00
Tim O'Meara
3c3395f24b add attempt_count to task 2020-08-11 10:16:31 -05:00
Ilan Steemers
07d0a8c0d1 Merge pull request #464 from Koed00/django_3_1
Updates to Django 3.1
2020-08-06 11:59:17 +02:00
Ilan Steemers
3dff5528d6 Updates to Django 3.1 2020-08-06 11:22:33 +02:00
Ilan Steemers
c1a627b7da Updates packages 2020-07-23 09:35:04 +02:00
Ilan Steemers
377f1b81f9 Updates boto 2020-07-13 17:21:32 +02:00