Daniil Mikhaylov

Results 3 issues of Daniil Mikhaylov

I have Docket configured like that: ``` Docket docket = new Docket(DocumentationType.SWAGGER_2) .alternateTypeRules( newRule( typeResolver.resolve(List.class, LocalDateTime.class), typeResolver.resolve(List.class, String.class) ), newRule( typeResolver.resolve(List.class, LocalDate.class), typeResolver.resolve(List.class, String.class) ) ) .apiInfo(apiInfo) .securitySchemes(Collections.singletonList(oauth())) .securityContexts(List.of(securityContext())) .forCodeGeneration(true)...

bug

Hello. I'm creating service like FaaS for JS scripts with limited API and found memory leak issues on prototyping different approaches while using Graal Polyglot. Approaches that I've trying to...

bug
memory

We have project based on Project Reactor (https://projectreactor.io) that have own event-loop for message processing. It's would be great if Polyglot will have an ability to manually process Promises from...

interop