Skip to content

Commit

Permalink
Fix clean download file beat task (#691)
Browse files Browse the repository at this point in the history
  • Loading branch information
meomancer authored May 8, 2024
1 parent efd6e32 commit 0e0f52e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deployment/.env
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ PYTHONPATH=/home/web/django_project:/geonode
USE_DEFAULT_GEOSERVER_STYLE=False
INITIAL_FIXTURES=True

VERSION=4.5.0
VERSION=4.5.1
ISTSOS_VERSION=2.4.1-4

# ------ GEOSERVER ------
Expand Down
2 changes: 1 addition & 1 deletion django_project/core/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
}
CELERY_BEAT_SCHEDULE['clean_download_file'] = {
'task': 'gwml2.tasks.clean.clean_download_file',
'schedule': crontab(hour=0),
'schedule': crontab(hour='*/1'),
}

GWML2_FOLDER = os.getenv(
Expand Down
2 changes: 1 addition & 1 deletion django_project/gwml2
Submodule gwml2 updated from e81d1e to 5f1763
2 changes: 1 addition & 1 deletion django_project/version/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.5.0
4.5.1

0 comments on commit 0e0f52e

Please sign in to comment.