Skip to content

Commit ec55047

Browse files
committed
gemspec: fix io-event version lower than v1.11.0
It appears io-event 1.11.0 ~ 1.12.1 are unstable on Windows. See #5041. Signed-off-by: Daijiro Fukuda <fukuda@clear-code.com>
1 parent 1f64300 commit ec55047

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

fluentd.gemspec

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ Gem::Specification.new do |gem|
4242
gem.add_runtime_dependency("uri", '~> 1.0')
4343
gem.add_runtime_dependency("async-http", "~> 0.86")
4444

45+
# It appears io-event 1.11.0 ~ 1.12.1 are unstable on Windows.
46+
# See https://github.com/fluent/fluentd/issues/5041.
47+
gem.add_runtime_dependency("io-event", "< 1.11.0")
48+
4549
# gems that aren't default gems as of Ruby 3.4
4650
gem.add_runtime_dependency("base64", ["~> 0.2"])
4751
gem.add_runtime_dependency("csv", ["~> 3.2"])

0 commit comments

Comments
 (0)