(**params)
| 1730 | |
| 1731 | # Wrapper for the async action |
| 1732 | async def _ping_wrapper(**params): |
| 1733 | return await cli_execute( |
| 1734 | "ping", |
| 1735 | server_names=params.get("server_names"), |
| 1736 | targets=params.get("targets", []), |
| 1737 | ) |
| 1738 | |
| 1739 | # Execute via run_command_sync |
| 1740 | run_command_sync( |
nothing calls this directly
no test coverage detected