| Index: logdog/appengine/coordinator/service.go
|
| diff --git a/logdog/appengine/coordinator/service.go b/logdog/appengine/coordinator/service.go
|
| index d4b43b741aa869fc3497060cb589c62e210b40b8..4a451e654eab64bb4be044ef7c373558988736f8 100644
|
| --- a/logdog/appengine/coordinator/service.go
|
| +++ b/logdog/appengine/coordinator/service.go
|
| @@ -257,13 +257,12 @@
|
| return nil, errors.New("failed to create BigTable credentials")
|
| }
|
|
|
| - // Use an AppEngine Context so we have access to the socket API. This is
|
| - // needed by AppEngine Classic for gRPC connections.
|
| - //
|
| // Explicitly clear gRPC metadata from the Context. It is forwarded to
|
| // delegate calls by default, and standard request metadata can break BigTable
|
| // calls.
|
| - st, err := bigtable.New(metadata.NewContext(s.aeCtx, nil), bigtable.Options{
|
| + c = metadata.NewContext(c, nil)
|
| +
|
| + st, err := bigtable.New(c, bigtable.Options{
|
| Project: bt.Project,
|
| Instance: bt.Instance,
|
| LogTable: bt.LogTableName,
|
|
|