lbilger
lbilger
I have the same problem, though it took me a lot of debugging to realize this is what's happening. Debugging some more, I think it is caused by some interaction...
I think I can work around this by using a `StateMachineFactory` and creating a new state machine instance instead of reusing the existing one, but still this looks like a...
I came across a similar issue, though in my case the possible elements are not known at compile time, so the workaround proposed by @tomastrajan wouldn't work for me. What...
Hi @arturovt, thanks for having a look! I had tried this only in Safari, but now that you said it works for you, I noticed that it works in Chrome...
I saw no other problems and it seems to work in Chrome, but of course it’s a very minimal example. I noticed the problem in my real application, though. Stackblitz...
No, it still seems we do not send TaskWithDataEntry updates when a DataEntry changes.
The issue is quite old but maybe it's still relevant for someone. I saw a slightly different error message that might be related. Generating Java code using the OpenAPI Generator,...
This also leads to errors and weird error messages when deserializing a generated class from JSON: `javax.ws.rs.ProcessingException: com.fasterxml.jackson.databind.exc.InvalidFormatException: Can not construct instance of Foo$BarEnum from String value 'COMES_FIRST': value not...
@wing328 I am using the latest release of the swagger-codegen-maven-plugin (2.2.1). The language is set to "jaxrs".
I had the same problem and managed to work around it by defining the following extension function and using it instead of `as`: ```kotlin inline fun ResponseBodyExtractionOptions.readAs(): T = this.`as`(T::class.java)...