Zac Siegel

Results 9 comments of Zac Siegel

I could use this in our project - the project number getting reset back to 1 is a bit annoying with multiple targets. Any chance on this getting merged at...

The distinction between a list of dependencies and a list of verified artifacts is a very interesting distinction I had not thought of! Thank you for the explanation - Nix...

This would be very helpful in regards to MDC context as mentioned above. I would be happy to put together a PR if any of the team members can point...

Note that I am currently working around this right now by using a TypeConverter. But I have a number of entities that may return a single item from time to...

I am also seeing some interesting and unexpected behavior when the return is empty. I would expect to get back an empty `Flow` but instead I get a null object...

I have the following dependencies related to kotlin specified. ``` implementation("io.micronaut.kotlin:micronaut-kotlin-extension-functions") implementation("io.micronaut.kotlin:micronaut-kotlin-runtime") ```

Yes I have the first one. I tried adding `org.jetbrains.kotlinx:kotlinx-coroutines-reactor` and have the same issue.

Testing this out a bit more I think I was able to determine that this only happens with interface methods that use the `@Query` annotation. The `findAll()` and other built-in...

My implementation above was in correct. I am now trying. ```kt @Factory class TypeConverters { @Singleton fun listToFlow(): TypeConverter { return TypeConverter { `object`, targetType, context -> Optional.of(`object`.asFlow()) } }...