forked from loafle/openapi-generator-original
comment out dart2 test, update rust server samples (#1471)
This commit is contained in:
parent
32b8d7fee7
commit
6ab6896a13
2
pom.xml
2
pom.xml
@ -1021,7 +1021,7 @@
|
|||||||
<!-- clients -->
|
<!-- clients -->
|
||||||
<module>samples/client/petstore/dart-jaguar/openapi</module>
|
<module>samples/client/petstore/dart-jaguar/openapi</module>
|
||||||
<module>samples/client/petstore/dart-jaguar/flutter_petstore/openapi</module>
|
<module>samples/client/petstore/dart-jaguar/flutter_petstore/openapi</module>
|
||||||
<module>samples/client/petstore/dart2/petstore</module>
|
<!--<module>samples/client/petstore/dart2/petstore</module>-->
|
||||||
<module>samples/client/petstore/haskell-http-client</module>
|
<module>samples/client/petstore/haskell-http-client</module>
|
||||||
<module>samples/client/petstore/elm-0.18</module>
|
<module>samples/client/petstore/elm-0.18</module>
|
||||||
<module>samples/client/petstore/groovy</module>
|
<module>samples/client/petstore/groovy</module>
|
||||||
|
@ -1 +1 @@
|
|||||||
3.3.2-SNAPSHOT
|
3.3.4-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
3.3.2-SNAPSHOT
|
3.3.4-SNAPSHOT
|
@ -405,6 +405,9 @@ impl RequestParser for ApiRequestParser {
|
|||||||
// DummyPut - PUT /dummy
|
// DummyPut - PUT /dummy
|
||||||
&hyper::Method::Put if path.matched(paths::ID_DUMMY) => Ok("DummyPut"),
|
&hyper::Method::Put if path.matched(paths::ID_DUMMY) => Ok("DummyPut"),
|
||||||
|
|
||||||
|
// FileResponseGet - GET /file_response
|
||||||
|
&hyper::Method::Get if path.matched(paths::ID_FILE_RESPONSE) => Ok("FileResponseGet"),
|
||||||
|
|
||||||
// HtmlPost - POST /html
|
// HtmlPost - POST /html
|
||||||
&hyper::Method::Post if path.matched(paths::ID_HTML) => Ok("HtmlPost"),
|
&hyper::Method::Post if path.matched(paths::ID_HTML) => Ok("HtmlPost"),
|
||||||
_ => Err(()),
|
_ => Err(()),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user