| Index: logdog/common/storage/bigtable/storage.go
|
| diff --git a/logdog/common/storage/bigtable/storage.go b/logdog/common/storage/bigtable/storage.go
|
| index 28255ac5d789de122cabafc1ec43f0ef184e927e..1b0808ad731880b93a85ded2c31c32e072097622 100644
|
| --- a/logdog/common/storage/bigtable/storage.go
|
| +++ b/logdog/common/storage/bigtable/storage.go
|
| @@ -14,9 +14,10 @@ import (
|
| log "github.com/luci/luci-go/common/logging"
|
| "github.com/luci/luci-go/logdog/common/storage"
|
| "github.com/luci/luci-go/logdog/common/types"
|
| +
|
| + "cloud.google.com/go/bigtable"
|
| "golang.org/x/net/context"
|
| - "google.golang.org/cloud"
|
| - "google.golang.org/cloud/bigtable"
|
| + "google.golang.org/api/option"
|
| )
|
|
|
| var (
|
| @@ -62,7 +63,7 @@ type Options struct {
|
| Instance string
|
| // ClientOptions are additional client options to use when instantiating the
|
| // client instance.
|
| - ClientOptions []cloud.ClientOption
|
| + ClientOptions []option.ClientOption
|
|
|
| // Table is the name of the BigTable table to use for logs.
|
| LogTable string
|
|
|