Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## 3.3.0 [unreleased]

1. [#149](https://github.com/influxdata/influxdb-client-ruby/pull/149): Fix FrozenError in Point#to_line_protocol when frozen string literals are enabled

## 3.2.0 [2024-11-27]

### Others
Expand Down Expand Up @@ -242,4 +244,3 @@ To overcome this limitation you have to set the client property `redirect_forwar

### Features
1. [#4](https://github.com/influxdata/influxdb-client-ruby/pull/4): Added WriteApi that will be used for Fluentd plugin

2 changes: 1 addition & 1 deletion lib/influxdb2/client/point.rb
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def time(time, precision)
#
# @return a string representation of the point
def to_line_protocol
line_protocol = ''
line_protocol = String.new
measurement = _escape_key(@name || '', ESCAPE_MEASUREMENT_LIST)

line_protocol << measurement
Expand Down
Loading