We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 50735ce + e3c6551 commit f800f53Copy full SHA for f800f53
fsthttp/internal.go
@@ -5,7 +5,11 @@ package fsthttp
5
import "github.com/fastly/compute-sdk-go/internal/abi/fastly"
6
7
func (req *Request) ConstructABIRequest() error {
8
- return req.constructABIRequest()
+ if err := req.constructABIRequest(); err != nil {
9
+ return err
10
+ }
11
+
12
+ return req.setABIRequestOptions()
13
}
14
15
func (req *Request) ABI() (*fastly.HTTPRequest, *fastly.HTTPBody) {
0 commit comments