We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d98bc37 commit c3145fcCopy full SHA for c3145fc
1 file changed
src/backend/apps/feed/tasks.py
@@ -16,7 +16,8 @@
16
populate_all_webcam_data,
17
update_all_webcam_data,
18
)
19
-from apps.wildfire.tasks import populate_all_wildfire_data
+
20
+# from apps.wildfire.tasks import populate_all_wildfire_data
21
from django.core.cache import cache
22
from django.core.management import call_command
23
from huey import crontab
@@ -116,7 +117,8 @@ def update_relations():
116
117
@db_periodic_task(crontab(minute="*/20"))
118
@lock_task('wildfires-lock')
119
def update_wildfires():
- populate_all_wildfire_data()
120
+ # populate_all_wildfire_data()
121
+ pass # Temporarily disable wildfires due to API issues
122
123
124
@on_startup()
0 commit comments