lib/logstash/outputs/s3/time_rotation_policy.rb in logstash-integration-aws-7.0.1 vs lib/logstash/outputs/s3/time_rotation_policy.rb in logstash-integration-aws-7.1.0

- old
+ new

@@ -5,10 +5,10 @@ class TimeRotationPolicy attr_reader :time_file def initialize(time_file) if time_file <= 0 - raise LogStash::ConfigurationError, "`time_file` need to be greather than 0" + raise LogStash::ConfigurationError, "`time_file` need to be greater than 0" end @time_file = time_file * 60 end