| Index: logdog/common/storage/bigtable/initialize.go
|
| diff --git a/logdog/common/storage/bigtable/initialize.go b/logdog/common/storage/bigtable/initialize.go
|
| index 9555c96ccb5351fc33627fecbdf764fcd05b5d6e..76c6f325d968caad9db284a7cf04189751bc5653 100644
|
| --- a/logdog/common/storage/bigtable/initialize.go
|
| +++ b/logdog/common/storage/bigtable/initialize.go
|
| @@ -47,7 +47,7 @@ func waitForTable(ctx context.Context, c *bigtable.AdminClient, name string) err
|
| return err
|
| }
|
| if !exists {
|
| - return errors.WrapTransient(errors.New("table does not exist"))
|
| + return errors.New("table does not exist", retry.Tag)
|
| }
|
| return nil
|
| }, func(err error, delay time.Duration) {
|
|
|