This commit is contained in:
karthikeyan-ks
2025-01-06 22:17:09 +05:30
parent 2ee423f35f
commit 10181e4d17
12 changed files with 77 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
from __future__ import absolute_import, unicode_literals
from celery import shared_task
import time
@shared_task
def process_uploaded_file(file_path):
# Simulate long-running task
time.sleep(300) # Replace with actual file processing logic
return 'File processed'