Eduardo Pinto
Eduardo Pinto
Assuming we have a Java POJO such as: ```java public record Test(String value, Instant ts) { } ``` And then we use: ```scala private val protobufMapper = ProtobufMapper.builder .addModule(new JavaTimeModule)...
We don't have the JWTs documented for JS/TS but I'm pretty sure it's supported as well, since it's only changes to the proto (which is common to all protocol-first sdks)....
Refs https://github.com/lightbend/kalix/issues/9415 This PR: - ~adds a new `TraceContext` type that can be derived from the metadata (similar to `JwtClaims`)~ - ~adds support for automatic injection of an opentelemetry `Tracer`...
Found at least 2 quickstarts that still use a regular `WebClient` in integration tests, inteads of the component client. I think we should use the ComponentClient unless there is a...
For java sdk, if one declares 2 different components that share a common sub-path, discovery works but then one of the paths seems to be unreachable with 404 `URL does...
A view with: ```java @GetMapping("/wrapped/by_city") @Query(""" SELECT * AS customers, next_page_token() AS token FROM customers_by_city WHERE address.city = ANY(:cities) OFFSET page_token_offset(:pagetoken) LIMIT 2 """) public CustomersResponse getCustomers(@RequestParam List cities, @RequestParam...
We currently only support subset of HTTP errors. I belive this came from the fact that only some had a direct translation to GRPC error codes. However, I think we...
When we have an Action subscribing to an ESE but which only handles 1 event and ignores the rest. The generated trace for an event that is ignored still includes...
When there is an unhandled exception coming from the user function, we could mark the span as Error and attach the error. E.g. ```scala case NonFatal(ex) => span.setStatus(trace.StatusCode.ERROR, ex.getMessage) ```...
Currently, we always use `server` as the spankind. However, other values should be used depending on the type of role that span plays out in the whole flow. Eg. `client`...