File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 5
5
### Added
6
6
7
7
- AWS api-change: Rework regions configuration
8
+ - AWS api-change: remove trailling ` / ` in ` ListFunctions ` request
8
9
9
10
### Changed
10
11
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ public function request(): Request
126
126
}
127
127
128
128
// Prepare URI
129
- $ uriString = '/2015-03-31/functions/ ' ;
129
+ $ uriString = '/2015-03-31/functions ' ;
130
130
131
131
// Prepare Body
132
132
$ body = '' ;
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public function testRequest(): void
18
18
19
19
// see https://docs.aws.amazon.com/lambda/latest/APIReference/API_ListFunctions.html
20
20
$ expected = '
21
- GET /2015-03-31/functions/ ?FunctionVersion=ALL&Marker=xxyy&MasterRegion=eu-central-1&MaxItems=1337 HTTP/1.1
21
+ GET /2015-03-31/functions?FunctionVersion=ALL&Marker=xxyy&MasterRegion=eu-central-1&MaxItems=1337 HTTP/1.1
22
22
Content-type: application/json
23
23
Accept: application/json
24
24
' ;
You can’t perform that action at this time.
0 commit comments