Skip to content

Commit

Permalink
Add update_qgis_versions task to celery schedule (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xpirix authored Jun 17, 2024
1 parent 5f7a3bb commit 234933a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions qgis-app/plugins/tasks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
from plugins.tasks.generate_plugins_xml import * # noqa
from plugins.tasks.update_feedjack import * # noqa
from plugins.tasks.update_qgis_versions import * # noqa
4 changes: 4 additions & 0 deletions qgis-app/settings_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@
'update_feedjack': {
'task': 'plugins.tasks.update_feedjack.update_feedjack',
'schedule': crontab(minute='*/30'), # Execute every 30 minutes.
},
'update_qgis_versions': {
'task': 'plugins.tasks.update_qgis_versions.update_qgis_versions',
'schedule': crontab(minute='*/30'), # Execute every 30 minutes.
}
}
# Set plugin token access and refresh validity to a very long duration
Expand Down

0 comments on commit 234933a

Please sign in to comment.