Open
Description
See influxdata/docs-v2#1561 (comment)
Regarding: https://docs.influxdata.com/influxdb/v2.0/write-data/developer-tools/influx-cli/
This command returns a parsing error (invalid boolean):
influx write "test_measurement,test_tag=tv test_field='fv' 1601403177"
This command works:influx write 'test_measurement,test_tag=tv test_field="fv" 1601403177'
The only difference is that the outer quotes are single and the quoting around the Field value is double. This is finicky and will probably trip people up.