Mattias Hellborg Arthursson
Mattias Hellborg Arthursson
> Hello, I noticed a problems in 2 of our applications using StackdriverMeterRegistry from micrometer 1.6.6. The errors are like this: `com.google.api.gax.rpc.InvalidArgumentException: io.grpc.StatusRuntimeException: INVALID_ARGUMENT: Field timeSeries[6].points[0].distributionValue had an invalid value:...
> We're seeing the same problem with Micrometer 1.11 - not sure if consistency is a problem here, but noticed that the |count| field is pretty much always 0 while...
I may be wrong, but I think AD is a little bit special here: I think you need to perform some operation using the connection in order for it to...
If you just want to use a custom object class already defined in your schema that should be no different from using standard object classes. The syntax should be the...
Could you be more specific? What exactly do you mean by 'complex'? An example would be useful. Cheers, Mattias torsdag 13 augusti 2015 skrev Adam Campbell [email protected]: > I'm trying...
Right, I see... Well, that won't be possible with the current API, and you might say that this is (semi-) by design. The thing is that the use of hardcoded...
You can do this with the LdapQueryBuilder: ``` LdapQueryBuilder.where("cn").is("John Doe") .or("cn").is("Jane Doe") .or("cn").is("Something Else") ``` You can also accomplish this with the legacy filter classes, i.e. OrFilter; just add more...
I see. I agree that something like the below would be more efficient: ``` LdapQueryBuilder.query().where("cn").in(valuesCollection) ``` and/or ``` LdapQueryBuilder.query().where("cn").in(value1, value2, value3) ```
It seems to me - perhaps naively - that making a package private, static method public would be change small enough to fly under the radar pretty smoothly. Then again...