Martin Kouba
Martin Kouba
> If the duration text starts with a digit, SchedulerUtils adds "PT" prefix. Yes, it's properly documented both in the [reference guide](https://quarkus.io/guides/scheduler-reference#intervals) and in the javadoc of `@Scheduled#every()` as well....
Could you pls provide a small reproducer app?
> I guess you normally don't need to have _both_, right? Exactly. The template param declarations are extracted from the record params. However, `items: Collection` should be transfomed to `{@kotlin.collections.Collection...
> > Maybe if you look at the compiled `DemoPage` you'll see a different type for the `items`. > > I've inspected that class using the IntelliJ Kotlin bytecode viewer:...
> @mkouba should I be expecting these sorts of issues with the latest Qute changes? > > ``` > Caused by: java.lang.NullPointerException > at io.quarkus.qute.deployment.QuteProcessor$Match.getTypeParameters(QuteProcessor.java:2281) > at io.quarkus.qute.deployment.QuteProcessor.resolveType(QuteProcessor.java:2004) > at...
> @mkouba Oh yeah, it's related. I'll fix this. Thanks!
I believe that the problem lies in the [DirectoryResource#list()](https://github.com/quarkusio/quarkus/blob/main/extensions/undertow/runtime/src/main/java/io/quarkus/undertow/runtime/KnownPathResourceManager.java#L119-L134) method. It returns an empty list because the `KnownPathResourceManager#files` looks like `["index.html"]`. I don't think that `NavigableSet.headSet(String)` could be used here...
> @mkouba I think we might need your help with this issue @DavideD I'm not sure I will be of any help here - the stack trace from the `hibernate-reactive-panache-quickstart`...
> I don't think it's Panache, but it seems that the session is created in one thread and then used in another. I was wondering if you might have some...
> I wonder if it's because the `deleteById` is split into a find and then a delete operation, instead of being a single one. Anyway, I will continue looking. Well,...