Bump Go version to 1.12 (#1290)

This commit is contained in:
Ta-Ching Chen
2019-08-28 13:47:40 +08:00
committed by GitHub
parent 1040a0d7e9
commit e762471d78
6 changed files with 6 additions and 16 deletions
+1 -3
View File
@@ -128,9 +128,7 @@ func (executor *Executor) serveCreateFuncServices() {
// It normally happened if there are multiple requests are
// waiting for the same function and executor failed to cre-
// ate service for function.
err = errors.Wrapf(err, "error getting service for function",
zap.String("function_name", m.Name),
zap.String("function_namespace", m.Namespace))
err = errors.Wrapf(err, "error getting service for function %v in namespace %v", m.Name, m.Namespace)
req.respChan <- &createFuncServiceResponse{
funcSvc: fsvc,
err: err,