From 1a0aedf01c1024d8a05927b1b17104e1b2b47f6c Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 10 Nov 2020 16:17:13 -0500 Subject: [PATCH] Up line count to 500 to be sure --- client-cli/cli_lib/vm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client-cli/cli_lib/vm.py b/client-cli/cli_lib/vm.py index 1034bcf9..fcbd751a 100644 --- a/client-cli/cli_lib/vm.py +++ b/client-cli/cli_lib/vm.py @@ -1020,10 +1020,10 @@ def follow_console_log(config, vm, lines=10): print(loglines, end='') while True: - # Grab the next line set (200 is a reasonable number of lines per second; any more are skipped) + # Grab the next line set (500 is a reasonable number of lines per second; any more are skipped) try: params = { - 'lines': 200 + 'lines': 500 } response = call_api(config, 'get', '/vm/{vm}/console'.format(vm=vm), params=params) new_console_log = response.json()['data']