Daniel Norberg
Daniel Norberg
Still breaks for me with maven 3.3.3. @udoprog, did you compile twice without a clean in between?
Unfortunately chartify users have configuration yaml files containing serialized python objects which afaik require the use of the unsafe yaml loader. We would need to modify the configuration loading code...
Silently changing `data()` to allow `null` seems like it might make existing code assuming non-null fail. Changing the field type to `Optional` would be a painful breaking change. Would it...
Docs are a bit vague but they seem to indicate that empty data is treated same as null data. So might be fine for us to represent null data as...
Pubsub seems to treat messages where (1) `data` is an empty string, (2) `data` is `null` and (3) `data` is absent (field not present in message object) the same. Pulling...
Related: #30
What credentials are you using? Default?
Came across this today with the factory method on an AutoValue class. ``` public static EndpointWithSchema create(String dataEndpointId, Schema beamSchema) { return new AutoValue_SqlTableDefinition_EndpointWithSchema(dataEndpointId, beamSchema); } ``` ``` SqlTableDefinition.java:[23,51] error:...
With `opencensus-impl-0.18.0-20181121.224929-2.jar` the `OpenCensus.Disruptor-0` thread cpu usage has dropped down to around `%10` for me on java 11.
@bogdandrutu I tried increasing the sleep from 1ms to [4ms](https://github.com/danielnorberg/opencensus-java/commit/5f90aabea95cf87f195a602234a2e62aed5e3355) and [8ms](https://github.com/danielnorberg/opencensus-java/commit/38ec90c3a984d1069e136f90d35da0630cf3f1b3) and got ~4% and ~2% cpu usage, respectively, when idle.