| Index: logdog/server/service/service.go
|
| diff --git a/logdog/server/service/service.go b/logdog/server/service/service.go
|
| index 3e0d4e00bdc9858588f27257bf44802a7a174d31..c89249e6f517be0e5c3f1f7e149104bf152b9382 100644
|
| --- a/logdog/server/service/service.go
|
| +++ b/logdog/server/service/service.go
|
| @@ -32,9 +32,10 @@ import (
|
| "github.com/luci/luci-go/logdog/common/storage/bigtable"
|
| "github.com/luci/luci-go/logdog/server/retryServicesClient"
|
| "github.com/luci/luci-go/logdog/server/service/config"
|
| +
|
| + "cloud.google.com/go/compute/metadata"
|
| "golang.org/x/net/context"
|
| - "google.golang.org/cloud"
|
| - "google.golang.org/cloud/compute/metadata"
|
| + "google.golang.org/api/option"
|
| )
|
|
|
| var (
|
| @@ -392,8 +393,8 @@ func (s *Service) IntermediateStorage(c context.Context) (storage.Storage, error
|
| Project: btcfg.Project,
|
| Instance: btcfg.Instance,
|
| LogTable: btcfg.LogTableName,
|
| - ClientOptions: []cloud.ClientOption{
|
| - cloud.WithTokenSource(a.TokenSource()),
|
| + ClientOptions: []option.ClientOption{
|
| + option.WithTokenSource(a.TokenSource()),
|
| },
|
| })
|
| if err != nil {
|
|
|