Skip to content

Commit

Permalink
Bug fix: correct namespace declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisaaronland committed May 27, 2021
1 parent ed7edc6 commit c6d627d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion publisher/gocloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func init() {

for _, scheme := range pubsub.DefaultURLMux().TopicSchemes() {

err := sfom_publisher.RegisterPublisher(ctx, scheme, NewGoCloudPublisher)
err := RegisterPublisher(ctx, scheme, NewGoCloudPublisher)

if err != nil {
panic(err)
Expand Down
2 changes: 1 addition & 1 deletion subscriber/gocloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func init() {

for _, scheme := range pubsub.DefaultURLMux().SubscriptionSchemes() {

err := sfom_subscriber.RegisterSubscriber(ctx, scheme, NewGoCloudSubscriber)
err := RegisterSubscriber(ctx, scheme, NewGoCloudSubscriber)

if err != nil {
panic(err)
Expand Down

0 comments on commit c6d627d

Please sign in to comment.