pkolaczk / latte

Latency Tester for Apache Cassandra
Apache License 2.0
176 stars 19 forks source link

Support printing string values of optional params set with `-P` flag #79

Closed vponomaryov closed 3 months ago

vponomaryov commented 3 months ago

Before we would have following output on the start of latte:

  -P str_param
  -P int_param        5

If we provided following params to the latte command:

  latte ... -P str_param="\"foo_str\"" -P int_param=5

With this change we will have following output:

  -P str_param        "foo_str"
  -P int_param        5