Linar Abzaltdinov
Linar Abzaltdinov
What about [google.api.http](https://github.com/googleapis/googleapis/blob/master/google/api/http.proto#L46) support? There is one Golang implementation : https://github.com/grpc-ecosystem/grpc-gateway It seems more flexible for me...
@ST-DDT I just came up with an idea of creating new Servlet, configuring it and registering it using `ServletRegistration.Dynamic` like [here](https://stackoverflow.com/questions/26779486/why-and-when-use-dynamic-servlet-registration). What do you think?
@ST-DDT > Sounds like an interesting approach, I'm not sure whether I can interweave this with normal spring-web. > /foobar/a -> web > /foobar/b -> grpc > /bar -> web...
@trungdoviet I suppose instead of ``` @Mapper(componentModel = "spring") public interface EmployeeEventConverter extends CommonConverter { ... } ``` you can rewrite it like that ``` @Mapper(componentModel = "spring", uses =...
Any updates? I have the same issue on 3.1.2
@leijendary @sobychacko Can you please take a look? As far as I see you were main contributor/reviewer of that feature
> This is good! It is probably better to remove the default value for the `timestamp` column to avoid unintentional `current_timestamp` since that generates inconsistencies. ✅ Thanks for the suggestion!...
I just found out that Cassandra ChatMemory solves same problem in different, probably more efficient way: ``` final AtomicLong instantSeq = new AtomicLong(Instant.now().toEpochMilli()); messages.forEach(msg -> { if (msg.getMetadata().containsKey(CONVERSATION_TS)) { msg.getMetadata().put(CONVERSATION_TS,...
Applied changes for JdbcChatMemoryRepository
@ilayaperumalg thank you! And sorry for being late, didn't have ability to update PR.