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

Unified Diff: logdog/common/storage/bigtable/storage.go

Issue 2219023003: Update APIs to use new Google cloud paths. (Closed) Base URL: https://github.com/luci/luci-go@master
Patch Set: Created 4 years, 4 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/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

Powered by Google App Engine
This is Rietveld 408576698