Skip to content

Commit

Permalink
chore: add warning for measurement name starts with hash
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Aug 22, 2022
1 parent 5c92624 commit 540a2dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion influxdb_client/client/write/point.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def to_line_protocol(self, precision=None):
The output Line protocol will be interpret as a comment by InfluxDB. For more info see:
- https://docs.influxdata.com/influxdb/latest/reference/syntax/line-protocol/#comments
"""
"""
warnings.warn(message, SyntaxWarning)
_tags = _append_tags(self._tags)
_fields = _append_fields(self._fields)
Expand Down

0 comments on commit 540a2dc

Please sign in to comment.