Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: common/api/dm/service/v1/depsserver_dec.go

Issue 1537883002: Initial distributor implementation (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@master
Patch Set: fix imports and make dummy.go a real file Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « common/api/dm/service/v1/datastore_embed_test.go ('k') | common/api/dm/service/v1/ensure_graph_data.pb.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: common/api/dm/service/v1/depsserver_dec.go
diff --git a/common/api/dm/service/v1/depsserver_dec.go b/common/api/dm/service/v1/depsserver_dec.go
index dc02996a5109104e72535a118e03661b16bc44c4..fbe3de2a48b629c9706e6030c0d2ed9483ee00c0 100644
--- a/common/api/dm/service/v1/depsserver_dec.go
+++ b/common/api/dm/service/v1/depsserver_dec.go
@@ -6,7 +6,7 @@ import (
proto "github.com/golang/protobuf/proto"
context "golang.org/x/net/context"
- google_protobuf1 "github.com/luci/luci-go/common/proto/google"
+ google_protobuf2 "github.com/luci/luci-go/common/proto/google"
)
type DecoratedDeps struct {
@@ -25,7 +25,7 @@ func (s *DecoratedDeps) EnsureGraphData(c context.Context, req *EnsureGraphDataR
return s.Service.EnsureGraphData(c, req)
}
-func (s *DecoratedDeps) ActivateExecution(c context.Context, req *ActivateExecutionReq) (*google_protobuf1.Empty, error) {
+func (s *DecoratedDeps) ActivateExecution(c context.Context, req *ActivateExecutionReq) (*google_protobuf2.Empty, error) {
c, err := s.Prelude(c, "ActivateExecution", req)
if err != nil {
return nil, err
@@ -33,7 +33,7 @@ func (s *DecoratedDeps) ActivateExecution(c context.Context, req *ActivateExecut
return s.Service.ActivateExecution(c, req)
}
-func (s *DecoratedDeps) FinishAttempt(c context.Context, req *FinishAttemptReq) (*google_protobuf1.Empty, error) {
+func (s *DecoratedDeps) FinishAttempt(c context.Context, req *FinishAttemptReq) (*google_protobuf2.Empty, error) {
c, err := s.Prelude(c, "FinishAttempt", req)
if err != nil {
return nil, err
@@ -48,11 +48,3 @@ func (s *DecoratedDeps) WalkGraph(c context.Context, req *WalkGraphReq) (*GraphD
}
return s.Service.WalkGraph(c, req)
}
-
-func (s *DecoratedDeps) ClaimExecution(c context.Context, req *google_protobuf1.Empty) (*ClaimExecutionRsp, error) {
- c, err := s.Prelude(c, "ClaimExecution", req)
- if err != nil {
- return nil, err
- }
- return s.Service.ClaimExecution(c, req)
-}
« no previous file with comments | « common/api/dm/service/v1/datastore_embed_test.go ('k') | common/api/dm/service/v1/ensure_graph_data.pb.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698