Gelunox
Gelunox
Confirming this problem still exists with 14w27b
> As a possible workaround, you can use a relative path, for instance: `src/main/resources/open-api-spec.yaml` Note that this doesn't work with multi module projects, especially if the spec is in a...
It seems like `io.swagger.parser.v3:swagger-parser-v3` assumes the `inputSpec` it receives is a valid URI, which it is not on windows because windows uses backslashes. `CodegenConfigurator.java` (line 670 on git tag `v7.2.0`,...
I am afraid I'm currently not in a position to do a git bisect. I have however been able to confirm that this is still not fixed in 7.13. I...
> The problem arises when OAS 3.1 is used together with the Maven variable `${project.baseUri}`. `baseUri` is required for generation on Windows with OAS 3.1 – with `basedir` the build...
I'm having the same issue ```java public boolean asyncAggregateTimeData() { if(!lock.tryLock()) { return false; } try { if(isUpdating) { return false; // → replaced boolean return with false for Aggregator::asyncAggregateTimeData...