-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: switches response file serving to use Vert.x filesystem.
This unifies response file reading across adapters, and provides support for response files on the classpath.
- Loading branch information
1 parent
58d82f8
commit 81a6ec5
Showing
6 changed files
with
83 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
...ter/awslambda/src/test/resources/simple/requests_v1/request_nonexistent_static_asset.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"path": "/assets/nonexistent", | ||
"httpMethod": "GET", | ||
"headers": {}, | ||
"queryStringParameters": {}, | ||
"pathParameters": {}, | ||
"body": null, | ||
"isBase64Encoded": false | ||
} |
13 changes: 13 additions & 0 deletions
13
...ter/awslambda/src/test/resources/simple/requests_v2/request_nonexistent_static_asset.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"headers": {}, | ||
"queryStringParameters": {}, | ||
"pathParameters": {}, | ||
"body": null, | ||
"isBase64Encoded": false, | ||
"requestContext": { | ||
"http": { | ||
"path": "/assets/nonexistent", | ||
"method": "GET" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters