| Index: logdog/appengine/coordinator/config/projects.go
|
| diff --git a/logdog/appengine/coordinator/config/projects.go b/logdog/appengine/coordinator/config/projects.go
|
| index 8ea5bf1f3898687d7abd94203b5f8fd472811a79..712634c8d714801b48176d3df77dfd9d1af58a1d 100644
|
| --- a/logdog/appengine/coordinator/config/projects.go
|
| +++ b/logdog/appengine/coordinator/config/projects.go
|
| @@ -5,7 +5,6 @@
|
| package config
|
|
|
| import (
|
| - "fmt"
|
| "sort"
|
|
|
| log "github.com/luci/luci-go/common/logging"
|
| @@ -22,7 +21,7 @@ import (
|
| //
|
| // A given project's configuration is named after the current App ID.
|
| func ProjectConfigPath(c context.Context) string {
|
| - return fmt.Sprintf("%s.cfg", cfgclient.CurrentServiceName(c))
|
| + return svcconfig.ProjectConfigPath(cfgclient.CurrentServiceName(c))
|
| }
|
|
|
| // ProjectConfig loads the project config protobuf from the config service.
|
|
|