(*args, **kwargs)
| 316 | |
| 317 | @wraps(func) |
| 318 | async def dummy_async_inner(*args, **kwargs): |
| 319 | output = await func(*args, **kwargs) |
| 320 | return output |
| 321 | |
| 322 | wrapper_inner = inner if is_transferqueue_enabled else dummy_inner |
| 323 | wrapper_async_inner = async_inner if is_transferqueue_enabled else dummy_async_inner |