We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6072d8 commit bc5fde8Copy full SHA for bc5fde8
modules/ingest-common/src/main/java/org/elasticsearch/ingest/common/ConvertProcessor.java
@@ -34,7 +34,7 @@ enum Type {
34
@Override
35
public Object convert(Object value) {
36
try {
37
- String strValue = value.toString();
+ String strValue = STRING.convert(value);
38
if (strValue.startsWith("0x") || strValue.startsWith("-0x")) {
39
return Integer.decode(strValue);
40
}
@@ -49,7 +49,7 @@ public Object convert(Object value) {
49
50
51
52
53
54
return Long.decode(strValue);
55
0 commit comments