-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix negative DelaySeconds being passed to parameter. #107
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the fix!
Could we fix Rubocop please? |
Issue: aws#106
``` Inspecting 53 files ........................C............................ Offenses: lib/generators/aws_record/base.rb:150:9: C: [Corrected] Style/HashEachMethods: Use each_key instead of each and remove the unused _rw_units block argument. options['table_config'].each do |config, _rw_units| ... ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 53 files inspected, 1 offense detected, 1 offense corrected Tip: Based on detected gems, the following RuboCop extension libraries might be helpful: * rubocop-rails (https://rubygems.org/gems/rubocop-rails) You can opt out of this message by adding the following to your config (see https://docs.rubocop.org/rubocop/extensions.html#extension-suggestions for more options): AllCops: SuggestExtensions: false ```
3fffc4a
to
ef03396
Compare
fixed. @mullermp @alextwoods |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Thanks for your contribution. I forgot this needs a changelog entry. I'll add one. I can try to get a release out this week if not next week. |
@mullermp |
I'm sorry, I got caught up with other things. I will do this today. |
Released as 3.9.1 |
Thanks. |
Resolves #106
Description of changes:
I fixed delay time to be 0 seconds when no delay or negative delay is set.
By submitting this pull request, I confirm that my contribution is made under
the terms of the Apache 2.0 license.