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
parameter --additional-properties= packageName="a.b"
result: directories in the ouput which are named "a.b" and "a/b"
#####Bug description
Client:
PythonClientCodegen.java line 250-269
PythonFlaskConnectionServerCodegen.java line 47-57 new SupportingFile("asdf.mustache", packageName, "asdf.py"));
instead of new SupportingFile("asdf.mustache", packageName.replace(".", "/"), "asdf.py"));
Related issues/PRs
#1853 It has to do with this issue because packageName should not exist. Instead invoker-package should be used (as far as I understand the documentation) #1302 exactly this issue but only reported for the client
Suggest a fix
Pull-request already in work
The text was updated successfully, but these errors were encountered:
Oh, thank you. I finally thought about this issue again and wanted to create a pull request. I assume I will wait until that patch is applied which happened already on 2019-02-08
openapi-generator version
4.0.0-SNAPSHOT
Description
--additional-properties= packageName="a.b"
result: directories in the ouput which are named "a.b" and "a/b"
#####Bug description
Client:
PythonClientCodegen.java line 250-269
PythonFlaskConnectionServerCodegen.java line 47-57
new SupportingFile("asdf.mustache", packageName, "asdf.py"));
instead of
new SupportingFile("asdf.mustache", packageName.replace(".", "/"), "asdf.py"));
Related issues/PRs
#1853 It has to do with this issue because packageName should not exist. Instead invoker-package should be used (as far as I understand the documentation)
#1302 exactly this issue but only reported for the client
Suggest a fix
Pull-request already in work
The text was updated successfully, but these errors were encountered: