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

Unified Diff: logdog/appengine/coordinator/coordinatorTest/service.go

Issue 2626433004: Move "common/config" common types into cfgtypes. (Closed)
Patch Set: Created 3 years, 11 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
Index: logdog/appengine/coordinator/coordinatorTest/service.go
diff --git a/logdog/appengine/coordinator/coordinatorTest/service.go b/logdog/appengine/coordinator/coordinatorTest/service.go
index 26f569a58319a1958bd23350c4550d966e6c0600..22f563444f278a08be060c85dbc8dacaef25d574 100644
--- a/logdog/appengine/coordinator/coordinatorTest/service.go
+++ b/logdog/appengine/coordinator/coordinatorTest/service.go
@@ -5,10 +5,10 @@
package coordinatorTest
import (
- luciConfig "github.com/luci/luci-go/common/config"
"github.com/luci/luci-go/logdog/api/config/svcconfig"
"github.com/luci/luci-go/logdog/appengine/coordinator"
"github.com/luci/luci-go/logdog/appengine/coordinator/config"
+ "github.com/luci/luci-go/luci_config/common/cfgtypes"
"golang.org/x/net/context"
)
@@ -49,7 +49,7 @@ func (s *Services) Config(c context.Context) (*config.Config, error) {
}
// ProjectConfig implements coordinator.Services.
-func (s *Services) ProjectConfig(c context.Context, project luciConfig.ProjectName) (*svcconfig.ProjectConfig, error) {
+func (s *Services) ProjectConfig(c context.Context, project cfgtypes.ProjectName) (*svcconfig.ProjectConfig, error) {
if s.PC != nil {
return s.PC()
}
« no previous file with comments | « logdog/appengine/coordinator/coordinatorTest/logStream.go ('k') | logdog/appengine/coordinator/endpoints/logs/get.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698