| Index: logdog/common/storage/archive/storage.go
|
| diff --git a/logdog/common/storage/archive/storage.go b/logdog/common/storage/archive/storage.go
|
| index 425497938fd2532f3e3de0f2627b0327dac7f5d9..deeea3854ff5b35a19da80cff05d9ec20b5cb7e3 100644
|
| --- a/logdog/common/storage/archive/storage.go
|
| +++ b/logdog/common/storage/archive/storage.go
|
| @@ -20,7 +20,6 @@ import (
|
| "sort"
|
| "sync/atomic"
|
|
|
| - "github.com/luci/luci-go/common/config"
|
| "github.com/luci/luci-go/common/data/recordio"
|
| "github.com/luci/luci-go/common/errors"
|
| "github.com/luci/luci-go/common/gcloud/gs"
|
| @@ -30,6 +29,7 @@ import (
|
| "github.com/luci/luci-go/logdog/common/storage"
|
| "github.com/luci/luci-go/logdog/common/storage/caching"
|
| "github.com/luci/luci-go/logdog/common/types"
|
| + "github.com/luci/luci-go/luci_config/common/cfgtypes"
|
|
|
| cloudStorage "cloud.google.com/go/storage"
|
| "github.com/golang/protobuf/proto"
|
| @@ -225,7 +225,7 @@ func (s *storageImpl) getLogEntriesIter(st *getStrategy, cb storage.GetCallback)
|
| }
|
| }
|
|
|
| -func (s *storageImpl) Tail(project config.ProjectName, path types.StreamPath) (*storage.Entry, error) {
|
| +func (s *storageImpl) Tail(project cfgtypes.ProjectName, path types.StreamPath) (*storage.Entry, error) {
|
| idx, err := s.getIndex()
|
| if err != nil {
|
| return nil, err
|
|
|