This repository was archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 524
Measurement names are not escaped in _dataframe_client.py; spaces in names improperly handled #520
Comments
@mkarlesky can you provide an example where this fails? I'm having trouble reproducing it. |
Here's an example that fails in my environment. Using the influx cli:
In a python shell, with
And more specifically, the patch we came up with was to change the line at the end of
to
|
excellent, thanks for the repro! I'll take a look at this. |
note this does work with |
Thanks, both for looking into it and for the json pointer!
…On Wed, Nov 29, 2017 at 8:44 PM, xginn8 ***@***.***> wrote:
note this does work with protocol=json, as an immediate workaround
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#520 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AGO_jhLsqyzs1c--U3jdNnI1SkXFCiWfks5s7giVgaJpZM4QDaFl>
.
|
tzonghao
added a commit
to tzonghao/influxdb-python
that referenced
this issue
Dec 6, 2017
xginn8
pushed a commit
that referenced
this issue
Dec 12, 2017
* Fixed: DataFrameClient should escape measurement names Issue #520 * Fix pep257 error
This issue was fixed in #542 |
Thanks, much appreciated!
…On Tue, Dec 12, 2017 at 8:15 AM, xginn8 ***@***.***> wrote:
Closed #520 <#520>.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#520 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AGO_joFtT-cRz86xXs7WPpf8Qmi-XGoFks5s_nxTgaJpZM4QDaFl>
.
|
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We hacked a patch by calling
_escape_tag(measurement)
at the end of_convert_dataframe_to_lines()
.The text was updated successfully, but these errors were encountered: