-
Notifications
You must be signed in to change notification settings - Fork 26
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
Add a patch for RubyInstaller to avoid crash on start up #620
Conversation
0bb59ad
to
3081471
Compare
b7d7c3d
to
592fc53
Compare
Hmm, this patch breaks searching MSYS2 for build 🤔 |
ff55475
to
7c937a3
Compare
7c937a3
to
c4b4056
Compare
I've confirmed that this patch fixes the issue. |
When a non-ASCII key exists under the registry key `SOFTWARE/Microsoft/Windows/CurrentVersion/Uninstall/`, Fluentd fails to start workers due to `Encoding::UndefinedConversionError`. This patch avoid this issue. Fix #616 Signed-off-by: Takuro Ashie <[email protected]>
c4b4056
to
f651dac
Compare
We observed that supervisor process of fluentd is finished unexpectedly after about 1 hour passed while repeating recovery. While this situation, opened handles are continually increased, over than 8400 at last. We got following backtrace on finishing supervisor process.
In the above log, the root cause is squashed by
|
I filed a new issue for tracking this problem at ServerEngine's repository: |
バッファロー らくらくアップデート!お前か! |
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
When a non-ASCII key exists under the registry key `SOFTWARE/Microsoft/Windows/CurrentVersion/Uninstall/`, Fluentd fails to start workers due to `Encoding::UndefinedConversionError`. This patch avoid this issue. Backported from v5.0.3: #620 Signed-off-by: Takuro Ashie <[email protected]>
When a non-ASCII key exists under the registry key `SOFTWARE/Microsoft/Windows/CurrentVersion/Uninstall/`, Fluentd fails to start workers due to `Encoding::UndefinedConversionError`. This patch avoid this issue. Backported from v5.0.3: #620 Signed-off-by: Takuro Ashie <[email protected]>
When a non-ASCII key exists under the registry key `SOFTWARE/Microsoft/Windows/CurrentVersion/Uninstall/`, Fluentd fails to start workers due to `Encoding::UndefinedConversionError`. This patch avoid this issue. Backported from v5.0.3: #620 --------- Signed-off-by: Takuro Ashie <[email protected]>
When a non-ASCII key exists under the registry key
SOFTWARE/Microsoft/Windows/CurrentVersion/Uninstall/
, Fluentd fails to start workers due toEncoding::UndefinedConversionError
. This patch avoid this issue.Fix #616