Skip to content

Commit e3c6551

Browse files
committed
fsthttp: update internal debug call for http cache refactoring change
1 parent 50735ce commit e3c6551

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)