Skip to content
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

Update README with known issues #11

Merged
merged 1 commit into from
May 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,19 @@ files.

The code coverage is printed at the end using `simplecov`.

## Known Issues

- This plugin internally uses the HTTP server plugin
[helper](https://docs.fluentd.org/plugin-helper-overview/api-plugin-helper-http_server)
which has higher precedence for `async-http` over `webrick`. But,
[`webrick`](https://github.com/ruby/webrick) is required to run this. In an
environment where both are installed, `async-http` is automatically selected
causing runtime issues. To make this work, you need to uninstall `async-http`
i.e. `gem uninstall async-http`. See issue
[#10](https://github.com/iamazeem/fluent-plugin-protobuf-http/issues/10) for
more details where this was identified in Docker containers where both gems
were already installed.

## Contribute

- [Fork](https://github.com/iamazeem/fluent-plugin-protobuf-http/fork) the project.
Expand Down