Skip to content

Commit f800f53

Browse files
authored
Merge pull request #158 from fastly/dgryski/http-cache-internal-set-abi-options
fsthttp: update internal debug call for http cache refactoring change
2 parents 50735ce + e3c6551 commit f800f53

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

fsthttp/internal.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ package fsthttp
55
import "github.com/fastly/compute-sdk-go/internal/abi/fastly"
66

77
func (req *Request) ConstructABIRequest() error {
8-
return req.constructABIRequest()
8+
if err := req.constructABIRequest(); err != nil {
9+
return err
10+
}
11+
12+
return req.setABIRequestOptions()
913
}
1014

1115
func (req *Request) ABI() (*fastly.HTTPRequest, *fastly.HTTPBody) {

0 commit comments

Comments
 (0)