bfreuden

Results 61 comments of bfreuden

@vietj @pmlopes I have modified my reproducer to use an async lock every time the code is dealing with authorizations: - clear authorizations - write authorizations - read authorizations The...

maybe (?) by replacing this `User` method: ```java public Authorizations authorizations(); ``` with something like: ```java public static class AuthorizationsHandler { Future handle(Authorizations authorizations); } public Future withAuthorizations(AuthorizationsHandler handler); ```...

In case it may help, I've tested a few openapi-based server frameworks (Nodejs express-openapi, Python fastapi, Java Vert.x, Java Micronaut) and all of them seem to consider that those paths...

@darrelmiller Thanks for your comment. I agree it is not easy to find a good wording. You will find below some thoughts about it. First it might be worth defining...

@karenetheridge Thanks for your comment! > I'm not sure that any of these definitions of path, path segment etc are relevant. I agree: I pressed the Comment button with a...

@OlivierDehaene thanks for you fast answer! Your configuration is working fine: | configuration | reqs/sec | avg. CPU usage (top) | | ------------- |:-------------:|:-------------:| | no cpu limit | 16.87...

Do you think TEI can set those environment variables at the beginning of its startup phase?

> Setting these values correctly would be really hard since they are MKL/runtime specific. > let users find the best values for their specific env > I think it's better...

@moranlefler Have you tried adding `@get` to the annotation? Like this: ```kotlin class TestNamedProperty2 { @get:JsonProperty("my_text") val text: String = "" } ``` I stumbled upon the same issue using...

This is indeed setting the annotations on getter methods as shown by the output of `javap`. ```kotlin private data class MyParams( @get:Schema(title="Jinja input", description = "Whole document if left empty,...