-
Notifications
You must be signed in to change notification settings - Fork 61
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
no implicit conversion of Integer into String (TypeError) #107
Comments
I have same problem. Reproducerequire 'bundler/inline'
gemfile do
source 'https://rubygems.org'
# gem 'logger', '= 1.6.2'
gem 'logger', '= 1.6.3'
end
require 'pathname'
path = Pathname.new('test.log')
logger = Logger.new(path)
|
@nobu Can you look this issue ? |
kenhys
added a commit
to kenhys/fluentd
that referenced
this issue
Dec 26, 2024
Since logger 1.6.3 or later, there is a bug that it cause unexpected exception (no implicit conversion of Integer into String (TypeError)) on windows. So hold on 1.6.2 for a while. See ruby/logger#107 Signed-off-by: Kentaro Hayashi <[email protected]>
kenhys
added a commit
to kenhys/fluentd
that referenced
this issue
Dec 26, 2024
Since logger 1.6.3 or later, there is a bug that it cause unexpected exception (no implicit conversion of Integer into String (TypeError)) on windows. So hold on 1.6.2 for a while. See ruby/logger#107 Signed-off-by: Kentaro Hayashi <[email protected]>
kenhys
added a commit
to kenhys/fluentd
that referenced
this issue
Dec 26, 2024
Since logger 1.6.3 or later, there is a bug that it cause unexpected exception (no implicit conversion of Integer into String (TypeError)) on windows. So hold on 1.6.2 for a while. See ruby/logger#107 Signed-off-by: Kentaro Hayashi <[email protected]>
kenhys
added a commit
to fluent/fluentd
that referenced
this issue
Dec 26, 2024
**Which issue(s) this PR fixes**: Fixes # **What this PR does / why we need it**: Since logger 1.6.3 or later, there is a bug that it cause unexpected exception (no implicit conversion of Integer into String (TypeError)) on windows. So hold on 1.6.2 for a while. See ruby/logger#107 **Docs Changes**: N/A **Release Note**: N/A Signed-off-by: Kentaro Hayashi <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't have a repo without proprietary code yet but upgrading to 1.6.3 throws an error on my Windows machine.
debugging, it looks like
dev.fileno
is an integer and it doesn't seem to like thatruby -v
ruby 3.2.3 (2024-01-18 revision 52bb2ac0a6) [x64-mingw-ucrt]
The text was updated successfully, but these errors were encountered: