rdmarsh / elm

A cli interface for extracting LogicMonitor data via the api
GNU General Public License v3.0
2 stars 1 forks source link

Multiple filters aren't parsed correctly, text truncated #36

Closed rdmarsh closed 9 months ago

rdmarsh commented 9 months ago

Describe the bug When using mulitple filters that are seperated by commas, they aren't parsed correctly. The letter before the comma is truncated:

eg:

elm -vv CollectorGroupList -F autoBalance:false,numOfCollectors\>1 -f autoBalance,name,numOfCollectors

The "false" becomes "fals".

To Reproduce Steps to reproduce the behavior:

  1. Run anything using multiple filters with debug (see example above)
  2. Look at debug to see the last char is being truncated (eg "fals")

Expected behavior Using the comma to seperate filter items does not truncate text

Desktop (please complete the following information):

rdmarsh commented 9 months ago

Fixed issue with 3b98a3d