Skip to content

Commit

Permalink
[sc115424] add send messages by batch to sqs sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
mtakerrabet committed Dec 4, 2023
1 parent d4d2e20 commit af6d632
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class SimpleQueueServiceTest {
public static final String TEST_QUEUE = "TestQueueJava";

private static final String DATA = "Hello World";
private static final Map<String, String> DATA_BATCH = new HashMap<>() {
private static final Map<String, String> DATA_BATCH = new HashMap<String, String>() {
{
put("1", "Hello World");
put("2", "It's sunny today");
Expand Down

0 comments on commit af6d632

Please sign in to comment.