comment out dart2 test, update rust server samples (#1471)

This commit is contained in:
William Cheng 2018-11-17 01:27:07 +08:00 committed by GitHub
parent 32b8d7fee7
commit 6ab6896a13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 3 deletions

View File

@ -1021,7 +1021,7 @@
<!-- clients -->
<module>samples/client/petstore/dart-jaguar/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/elm-0.18</module>
<module>samples/client/petstore/groovy</module>

View File

@ -1 +1 @@
3.3.2-SNAPSHOT
3.3.4-SNAPSHOT

View File

@ -1 +1 @@
3.3.2-SNAPSHOT
3.3.4-SNAPSHOT

View File

@ -405,6 +405,9 @@ impl RequestParser for ApiRequestParser {
// DummyPut - PUT /dummy
&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
&hyper::Method::Post if path.matched(paths::ID_HTML) => Ok("HtmlPost"),
_ => Err(()),