store the errors
This commit is contained in:
parent
e5cd37ef21
commit
4b78407d3f
|
@ -18,6 +18,7 @@ message HttpRequest { // HttpRequest repres
|
||||||
bytes body = 9; // The request body as raw bytes.
|
bytes body = 9; // The request body as raw bytes.
|
||||||
string namespace = 10; // When the body is a pb (always!). This is the pb namespace ("go.wit.com/lib/protobuf/virtpb")
|
string namespace = 10; // When the body is a pb (always!). This is the pb namespace ("go.wit.com/lib/protobuf/virtpb")
|
||||||
google.protobuf.Timestamp ctime = 11; // create time of the patch
|
google.protobuf.Timestamp ctime = 11; // create time of the patch
|
||||||
|
repeated string errors = 12; // When the body is a pb (always!). This is the pb namespace ("go.wit.com/lib/protobuf/virtpb")
|
||||||
}
|
}
|
||||||
|
|
||||||
message HttpRequests { // `autogenpb:marshal` `autogenpb:mutex`
|
message HttpRequests { // `autogenpb:marshal` `autogenpb:mutex`
|
||||||
|
|
3
post.go
3
post.go
|
@ -9,6 +9,8 @@ import (
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"os/user"
|
"os/user"
|
||||||
|
|
||||||
|
"go.wit.com/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
func HttpPost(baseURL string, route string, data []byte) ([]byte, error) {
|
func HttpPost(baseURL string, route string, data []byte) ([]byte, error) {
|
||||||
|
@ -19,6 +21,7 @@ func HttpPost(baseURL string, route string, data []byte) ([]byte, error) {
|
||||||
var err error
|
var err error
|
||||||
var req *http.Request
|
var req *http.Request
|
||||||
|
|
||||||
|
log.Info("httppb.HttpPost to", finalURL.String())
|
||||||
req, err = http.NewRequest(http.MethodPost, finalURL.String(), bytes.NewBuffer(data))
|
req, err = http.NewRequest(http.MethodPost, finalURL.String(), bytes.NewBuffer(data))
|
||||||
if req == nil {
|
if req == nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
Loading…
Reference in New Issue