Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove single threaded executor
The single threaded executor was causing issues in combination with the GrpcResponseWriter. The response was send in a different thread from where the request was received. Since the writer reuses a DirectBuffer to store the record this could result in the buffer being modified by a thread, whilst the response was still being send in the single executor thread.
- Loading branch information