| 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..b549394ad8bc284b8bff6153f5580f4d6570e843 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"
|
| "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 retry.Tag.Apply(err)
|
| }
|
| }
|
|
|