You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
234 B
9 lines
234 B
|
2 days ago
|
from celery import shared_task
|
||
|
|
from group.utils.main_process import main_update_process
|
||
|
|
|
||
|
|
@shared_task(time_limit=10*60, soft_time_limit=10*60)
|
||
|
|
def group_data_task():
|
||
|
|
main_update_process()
|
||
|
|
print("task success")
|
||
|
|
return True
|