Eduardo Pinto

Results 27 issues of 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)...

protobuf

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`...

Documentation
kalix-runtime

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...

Documentation
kalix-runtime

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...

bug
java-sdk

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...

bug
kalix-runtime
views
java-sdk

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...

team-runtime
java-sdk

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...

bug
team-runtime

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) ```...

enhancement
team-runtime

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`...

enhancement
team-runtime