Skip to content

Commit

Permalink
golangci-lint fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Amit Mor <[email protected]>
  • Loading branch information
amimimor committed Oct 12, 2023
1 parent ada263b commit dc699b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pubsub/aws/snssqs/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type snsSqsMetadata struct {
// aws partition in which SNS/SQS should create resources.
internalPartition string `mapstructure:"-"`
// name of the queue for this application. The is provided by the runtime as "consumerID".
SqsQueueName string `mapstructure:"consumerID" mdignore:"true"`
SqsQueueName string `mapstructure:"consumerID" mdignore:"true"`
// name of the dead letter queue for this application.
SqsDeadLettersQueueName string `mapstructure:"sqsDeadLettersQueueName"`
// flag to SNS and SQS FIFO.
Expand Down
3 changes: 2 additions & 1 deletion pubsub/aws/snssqs/subscription_mgmt.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ import (
"context"
"sync"

"github.com/puzpuzpuz/xsync/v2"

"github.com/dapr/components-contrib/pubsub"
"github.com/dapr/kit/logger"
"github.com/puzpuzpuz/xsync/v2"
)

type (
Expand Down

0 comments on commit dc699b0

Please sign in to comment.