| Index: logdog/common/storage/bigtable/bigtable.go
|
| diff --git a/logdog/common/storage/bigtable/bigtable.go b/logdog/common/storage/bigtable/bigtable.go
|
| index a42fe60f0775c5d69bbff0c5bae4d9d18402ee70..23d38261212b74b21e04339bee31e6da9513cb44 100644
|
| --- a/logdog/common/storage/bigtable/bigtable.go
|
| +++ b/logdog/common/storage/bigtable/bigtable.go
|
| @@ -12,7 +12,7 @@ import (
|
| "golang.org/x/net/context"
|
| "google.golang.org/grpc/codes"
|
|
|
| - "github.com/luci/luci-go/common/errors"
|
| + "github.com/luci/luci-go/common/retry/transient"
|
| "github.com/luci/luci-go/grpc/grpcutil"
|
| "github.com/luci/luci-go/logdog/common/storage"
|
| )
|
| @@ -197,6 +197,6 @@ func wrapIfTransientForApply(err error) error {
|
| case codes.InvalidArgument:
|
| return err
|
| default:
|
| - return errors.WrapTransient(err)
|
| + return transient.Tag.Apply(err)
|
| }
|
| }
|
|
|