修复一处编译问题

This commit is contained in:
刘祥超
2023-06-07 20:30:52 +08:00
parent f88d0982ed
commit fe8c5b505a

View File

@@ -11,5 +11,5 @@ import (
func (this *HTTPRequest) doOSSOrigin(origin *serverconfigs.OriginConfig) (resp *http.Response, goNext bool, err error) {
// stub
return nil, errors.New("not implemented")
return nil, false, errors.New("not implemented")
}