diff options
author | Tim Smith <tsmith@chef.io> | 2020-03-23 13:29:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-23 13:29:48 -0700 |
commit | 368c42e684f6af6609b2eab6fb7d9a910f9d9897 (patch) | |
tree | 06e17264107221131d4ab499fe3ed30764e79757 | |
parent | 6932faa7fd7087dc7c7c16ff6423d8b42c4b701a (diff) | |
download | chef-368c42e684f6af6609b2eab6fb7d9a910f9d9897.tar.gz |
Update lib/chef/mixin/cron_validations.rb
Signed-off-by: Tim Smith <tsmith@chef.io>
Co-Authored-By: pete higgins <pete@peterhiggins.org>
-rw-r--r-- | lib/chef/mixin/cron_validations.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/chef/mixin/cron_validations.rb b/lib/chef/mixin/cron_validations.rb index e8bb279a5a..991f52ddf3 100644 --- a/lib/chef/mixin/cron_validations.rb +++ b/lib/chef/mixin/cron_validations.rb @@ -28,7 +28,6 @@ class Chef def self.validate_numeric(spec, min, max) return true if spec == "*" - # binding.pry if spec.respond_to? :to_int return false unless spec >= min && spec <= max |