Skip to content

Commit 985fc57

Browse files
committed
Fix AmazonSQSExtendedAsyncClient ignoring the configured prefix
1 parent aeeda41 commit 985fc57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/amazon/sqs/javamessaging/AmazonSQSExtendedAsyncClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ private CompletableFuture<SendMessageRequest> storeMessageInS3(SendMessageReques
490490
clientConfiguration.usesLegacyReservedAttributeName()));
491491

492492
// Store the message content in S3.
493-
return payloadStore.storeOriginalPayload(messageContentStr)
493+
return storeOriginalPayload(messageContentStr)
494494
.thenApply(largeMessagePointer -> {
495495
sendMessageRequestBuilder.messageBody(largeMessagePointer);
496496
return sendMessageRequestBuilder.build();

0 commit comments

Comments
 (0)