Christophe Bornet
Christophe Bornet
See https://github.com/salesforce/grpc-java-contrib/pull/17 for a rxjava2 integration passing the rx stream TCK. Could be a good base for a Reactor implementation.
Yes, I'm not sure there's anything to do for RxJava/Reactor in this project. I've tested and salesforce plugin + this starter works out-of-the-box. So the Reactor plugin should probably be...
@hartmut-co-uk yes I confirm they work perfectly together. The custom @GrpcService is in another salesforce lib.
The non-reactive version of the csrf filter generates the token even if the request doesn't match `requireCsrfProtectionMatcher`. Shouldn't it be done the same way on the reactive part ?
Why not implementing the same behavior in Webflux as in Webmvc ?
> On the languages front: hopefully all :) Yes but are there any plans on this ? Which will be the next supported languages ? I guess Swift is a...
I see that .NET is now supported. Awesome work :+1: !
I think this is just an issue with how you test the datetime value. 2016-07-04T21:42:01.473-03:00[America/Cayenne] and 2016-07-05T00:42:01.066Z[GMT] hold the same Instant but are not equal because ES doesn't preserve the...
Well, that would be a fix in the main entity generator. What I don't understand is that ZonedDateTime+ES+not UTC Timezone should already be tested by Travis. cc @pascalgrimaud
Glad I convinced you 😀. At first I thought that it wouldn't be necessary since we already have `isPresent()` but I see that Java 11 introduced `isEmpty()` for Optional so...