Fix typos

This commit is contained in:
Dimitris Apostolou
2022-02-10 22:03:27 +02:00
committed by Chris Eager
parent c560b9229c
commit 93d06e3f4d
4 changed files with 5 additions and 5 deletions

View File

@@ -73,7 +73,7 @@ public class MessagesDynamoDb extends AbstractDynamoDbStore {
private void storeBatch(final List<MessageProtos.Envelope> messages, final UUID destinationAccountUuid, final long destinationDeviceId) {
if (messages.size() > DYNAMO_DB_MAX_BATCH_SIZE) {
throw new IllegalArgumentException("Maximum batch size of " + DYNAMO_DB_MAX_BATCH_SIZE + " execeeded with " + messages.size() + " messages");
throw new IllegalArgumentException("Maximum batch size of " + DYNAMO_DB_MAX_BATCH_SIZE + " exceeded with " + messages.size() + " messages");
}
final AttributeValue partitionKey = convertPartitionKey(destinationAccountUuid);