File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -84,3 +84,5 @@ Resources:
8484Outputs :
8585 OwenBlobsQueueUrl :
8686 Value : !Ref OwenBlobsQueue
87+ OwenBlobsQueueArn :
88+ Value : !GetAtt OwenBlobsQueue.Arn
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ Resources:
146146 Action :
147147 - sqs:SendMessage
148148 Resource :
149- - !GetAtt OwenBlobsQueue.Outputs.OwenBlobsQueueUrl
149+ - !GetAtt OwenBlobsQueue.Outputs.OwenBlobsQueueArn
150150
151151 OwenLambdaSecrets :
152152 Type : AWS::SecretsManager::Secret
Original file line number Diff line number Diff line change @@ -163,7 +163,9 @@ pub async fn run(
163163
164164 if config. use_batch_sender == true {
165165 if cfg ! ( feature = "aws-integration" ) {
166+ #[ cfg( feature = "aws-integration" ) ]
166167 let blobs_queue_producer = blobs_queue:: BlobsQueueProducer :: build ( ) . await ?;
168+ #[ cfg( feature = "aws-integration" ) ]
167169 blobs_queue_producer
168170 . enqueue_blob ( blob_transaction_data)
169171 . await ?;
You can’t perform that action at this time.
0 commit comments