Skip to content

Commit

Permalink
Put use rate limiting property descriptor to the property descriptor …
Browse files Browse the repository at this point in the history
…list.
  • Loading branch information
sdriton committed Nov 14, 2024
1 parent 9e7d188 commit 34cf038
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public class PutSms extends AbstractProcessor {

@Override
protected void init(final ProcessorInitializationContext context) {
final List<PropertyDescriptor> descLst = List.of(AWS_ACCESS_KEY, AWS_SECRET_KEY, AWS_REGION);
final List<PropertyDescriptor> descLst = List.of(AWS_ACCESS_KEY, AWS_SECRET_KEY, AWS_REGION, USE_RATE_LIMITING);
this.descriptors = Collections.unmodifiableList(descLst);

final Set<Relationship> relLst = Set.of(REL_SUCCESS, REL_FAILURE);
Expand Down

0 comments on commit 34cf038

Please sign in to comment.