You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently encountered the following exception (Javalin 6.3.0), which occurs when trying to access the swagger UI:
[JettyServerThreadPool-165] ERROR io.javalin.Javalin - Fatal error occurred while servicing http-request
java.lang.NoSuchMethodError: 'io.javalin.openapi.plugin.DefinitionConfiguration io.javalin.openapi.plugin.DefinitionConfiguration.withInfo(java.util.function.Consumer)'
at convex.restapi.RESTServer.lambda$8(RESTServer.java:135)
at io.javalin.openapi.plugin.OpenApiPlugin$createDocumentation$1.invoke(OpenApiPlugin.kt:36)
at io.javalin.openapi.plugin.OpenApiPlugin$createDocumentation$1.invoke(OpenApiPlugin.kt:25)
at kotlin.SynchronizedLazyImpl.getValue(LazyJVM.kt:74)
I would expect this not to throw such an exception, because the code compiles fine and the target method apparently exists.
I recently encountered the following exception (Javalin
6.3.0
), which occurs when trying to access the swagger UI:I would expect this not to throw such an exception, because the code compiles fine and the target method apparently exists.
Calling code looks like:
This looks like a bug, though I could be doing something wrong?
The text was updated successfully, but these errors were encountered: