Format the modular task path for a function via inspection.
(func)
| 465 | |
| 466 | |
| 467 | def get_func_task_path(func): |
| 468 | """ |
| 469 | Format the modular task path for a function via inspection. |
| 470 | """ |
| 471 | module_path = inspect.getmodule(func).__name__ |
| 472 | task_path = "{module_path}.{func_name}".format(module_path=module_path, func_name=func.__name__) |
| 473 | return task_path |
| 474 | |
| 475 | |
| 476 | def get_async_response(response_id): |
no outgoing calls