alaingiller
alaingiller
I confirm this bug, 1st run take several minutes
I also got the problem while using @opentelemetry/exporter-trace-otlp-proto so I switch to @opentelemetry/exporter-trace-otlp-http. Less performant, but more secure at least...
I also really need this PR to set the bearer token which is valid only for a short time. Currently I'm using this workaround: `(exporter as any)._headers[key] = value;`
The problem is in this class: com.fasterxml.jackson.databind.ser.std.NumberSerializers#DoubleSerializer If the value is 0 (or 0.0 because is converted to double) then it will be skipped. This is call there com.fasterxml.jackson.databind.ser.impl.UnwrappingBeanPropertyWriter#serializeAsField ```...
I'm using jackson-jsonSchema 2.7.3 and also try with 2.7.4 and jackson-databind 2.6.6 The problem is for JSR-303 annotation one should not check if value is "empty". With current implementation `@Min(0)`...
Very easy to reproduce: Create this pojo: ``` public class SimplePojo{ @Min(0) private int dontWork; @Min(1) private int workWell; /* getter & setter */ } ``` and then: `final SchemaFactoryWrapper...
Generated json-schema: ``` { "type" : "object", "id" : "urn:jsonschema:SimplePojo", "properties" : { "dontWork" : { "type" : "integer" }, "workWell" : { "type" : "integer", "minimum" : 1.0 }...
@ivan-osipov : So you say that you run my little exemple and you didn't get the same result as me? With the current version, @Min(0) on an Integer has not...