Re: [dpdk-dev] [PATCH v3] usertools: fix input handling in telemetry script

2019-08-08 Thread Thomas Monjalon
08/08/2019 16:37, Andrius Sirvys: > This commit removes the unnecesarry ast.literal_eval() function call > from the input handling, which now relies just on raw_input() to get > its input. > > Fixes: 53f293c9a783 ("usertools: replace unsafe input function") > Cc: andrius.sir...@intel.com > > Sign

Re: [dpdk-dev] [PATCH v3] usertools: fix input handling in telemetry script

2019-08-08 Thread Van Haaren, Harry
> -Original Message- > From: Sirvys, Andrius > Sent: Thursday, August 8, 2019 3:38 PM > To: Laatz, Kevin > Cc: dev@dpdk.org; sta...@dpdk.org; Van Haaren, Harry > ; Ferriter, Cian ; > Lipiec, Herakliusz ; Sirvys, Andrius > > Subject: [PATCH v3] usertools: fix input handling in telemetry sc

[dpdk-dev] [PATCH v3] usertools: fix input handling in telemetry script

2019-08-08 Thread Andrius Sirvys
This commit removes the unnecesarry ast.literal_eval() function call from the input handling, which now relies just on raw_input() to get its input. Fixes: 53f293c9a783 ("usertools: replace unsafe input function") Cc: andrius.sir...@intel.com Signed-off-by: Andrius Sirvys --- v2: Removed unneces