Paulo Lopes
Paulo Lopes
@vietj I am guessing the issue here could be related how core is used to start the server.
The order of creation is a bit locked to the underlying API but I'll see if we can fix it.
@vietj the `writeStream` is initialized by `gRPC` itself in a private method: ```java private static StreamObserver asyncStreamingRequestCall(ClientCall call, StreamObserver responseObserver, boolean streamingResponse) { ClientCalls.CallToStreamObserverAdapter adapter = new ClientCalls.CallToStreamObserverAdapter(call); startCall(call, new...
The gRPC api isn't polyglot. Adding the required annotations would help the use from other languages. As a future bonus if the generator would add the annotations to the generated...
Yes I believe that would be nice for groovy and ECMAScript too
@cescoffier @codepitbull you also work with codegen can you check if this also affects you?
@UglyHobbitFeet could you prepare a small working example, i can copy paste and look into? I want to trace the issue as it is not clear if it is a...
Hi @navi2589 this is not a bug IMHO. I've recreated your issue: ```java package io.vertx.test.redis; import io.vertx.ext.unit.Async; import io.vertx.ext.unit.TestContext; import io.vertx.ext.unit.junit.RunTestOnContext; import io.vertx.ext.unit.junit.VertxUnitRunner; import io.vertx.redis.client.Redis; import io.vertx.redis.client.RedisOptions; import org.junit.*; import...
We could have the multi store a linked hash map and compute the integer index by looping the entries. Yet if I'm not mistaken Redis 3 is EOL by July...
Hi, indeed we don't have a configuration setting for the domain, I think this could be added, however, we should follow: https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html#domain-and-path-attributes Which states that by default we should not...