Skip to content

Commit 11b8c53

Browse files
committed
Fix improper quoting on tag values when the value was text
1 parent 9c2f37c commit 11b8c53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

influxdb/src/query/line_proto_term.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ impl LineProtoTerm<'_> {
6262
Float(v) => format!(r#""{}""#, v.to_string()),
6363
SignedInteger(v) => format!(r#""{}""#, v),
6464
UnsignedInteger(v) => format!(r#""{}""#, v),
65-
Text(v) => format!(r#""{}""#, Self::escape_any(v, &*SLASHES)),
65+
Text(v) => format!(r#"{}"#, Self::escape_any(v, &*SLASHES)),
6666
}
6767
}
6868

0 commit comments

Comments
 (0)