I have the following celery task:
@pp.task(name="my dummy task")
def dummy_task(args, my_ids):
print ("run background task")
//long process here
return {'status':'ok}
The thing is that the my_ids carries a lot of information and when I look at 'flower' app the args column is completely cluttered. Is there any annotation/decorator to use to avoid this?