David Geirola

Results 22 issues of David Geirola

Given the following code, I get a `TimeoutException` for 15000 millis that is right BUT the stack trace take me to the line of `t2` instead of `t3` I was...

:beetle: bug

The purpose of this PR is to resolve issue #347 at its root allowing the `CommittableOffsetBatch` to process records from different topics. It's very useful when you consume from multiple...

Recently I had to use `fs2-kafka` in prod with Protobuf. Since I didn't find any module or library ready to use I started to develop my own implementation ( delegating...

Hi, since I needed several times to check if the code just compiles without worrying about the errors I thought that having `assertCompile` assertion would be useful. 🤔 In this...

Hi, i'm writing a Scala library to add a functional layer to this library. In my library i've defined a _rule_ to edit the xml document. This _rule_ contains: -...

Should be useful to have: - Beautify button to format JSON - Replace the text box with a JSON editor like this one https://jsonlint.com/

Rename the `master` with `main`, just to avoid issue when some settings are copied from other repos

nice to have
cicd

Replace H2 with HSQLDB for testing.

enhancement

At the moment `List`s are supported but `Set`s aren't and are converted to a String. It would be great to have the `Set` support as well. What do you think?

enhancement

Given this code I have some doubts ```scala // user/{id} val getUser = endpoint .securityIn(sttp.tapir.auth.bearer[AuthEncodedToken]()) .in("user") .in(path[UserId]("id")) val ep = getUser .serverSecurityLogic(token => decodeAndValidateToken(token)) .serverLogic(token => userId => canAccessOrForbidden(token, userId)...