Skip to content

Commit

Permalink
pubsub/gcppubsub: update proto import (#3230)
Browse files Browse the repository at this point in the history
  • Loading branch information
Multiply authored Feb 25, 2023
1 parent b361258 commit 53ba901
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pubsub/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"gocloud.dev/pubsub"

pbraw "cloud.google.com/go/pubsub/apiv1"
pbapi "google.golang.org/genproto/googleapis/pubsub/v1"
pbapi "cloud.google.com/go/pubsub/apiv1/pubsubpb"
"google.golang.org/grpc/status"
)

Expand Down
2 changes: 1 addition & 1 deletion pubsub/gcppubsub/gcppubsub.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ import (
"time"

raw "cloud.google.com/go/pubsub/apiv1"
pb "cloud.google.com/go/pubsub/apiv1/pubsubpb"
"github.com/google/wire"
"gocloud.dev/gcerrors"
"gocloud.dev/gcp"
Expand All @@ -71,7 +72,6 @@ import (
"gocloud.dev/pubsub/batcher"
"gocloud.dev/pubsub/driver"
"google.golang.org/api/option"
pb "google.golang.org/genproto/googleapis/pubsub/v1"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/credentials/oauth"
Expand Down
2 changes: 1 addition & 1 deletion pubsub/gcppubsub/gcppubsub_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import (
"testing"

raw "cloud.google.com/go/pubsub/apiv1"
"cloud.google.com/go/pubsub/apiv1/pubsubpb"
"gocloud.dev/gcp"
"gocloud.dev/internal/testing/setup"
"gocloud.dev/pubsub"
"gocloud.dev/pubsub/driver"
"gocloud.dev/pubsub/drivertest"
pubsubpb "google.golang.org/genproto/googleapis/pubsub/v1"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
Expand Down

0 comments on commit 53ba901

Please sign in to comment.