Otherwise, the other endpoint cannot distinguish between an unknown command and a command which takes a long time.
Signed-off-by: Fiona Ebner <[email protected]> --- src/PVE/CLI/qm.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/PVE/CLI/qm.pm b/src/PVE/CLI/qm.pm index 8498d0c5..9b7e5ab8 100755 --- a/src/PVE/CLI/qm.pm +++ b/src/PVE/CLI/qm.pm @@ -490,6 +490,8 @@ __PACKAGE__->register_method({ } else { $tunnel_write->("OK"); } + } else { + $tunnel_write->("ERR: unknown command '$line'"); } } -- 2.47.3
