Re: [dpdk-dev] [PATCH v2] usertools: dpdk-telemetry-client.py run into looping status

2019-08-08 Thread Thomas Monjalon
07/08/2019 15:04, Andrius Sirvys: > The ast.literal_eval() was used incorrectly and wouldn't properly > retrieve the user option. Was causing the options to keep being listed > in a loop. Removed and replaced with raw_input() being cast to an int. > Works as expected now. You mean you added "ast.l

[dpdk-dev] [PATCH v2] usertools: dpdk-telemetry-client.py run into looping status

2019-08-07 Thread Andrius Sirvys
The ast.literal_eval() was used incorrectly and wouldn't properly retrieve the user option. Was causing the options to keep being listed in a loop. Removed and replaced with raw_input() being cast to an int. Works as expected now. Fixes: 53f293c9a783 ("usertools: replace unsafe input function") Cc