You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 16, 2025. It is now read-only.
During debugging of ConsumerStream, I noticed _read will fire after a shutdown. this.active is set to false, but the client request is still sent which results in a 500 error.
I have implemented a Consumer from https://github.com/confluentinc/kafka-rest-node/blob/master/examples/console_consumer.js
Occasionally I am getting a 500 error when shutting down.
Logs from kafka-rest also show a DELETE happens, then a GET happens.
During debugging of
ConsumerStream, I noticed_readwill fire after a shutdown.this.activeis set tofalse, but the client request is still sent which results in a 500 error.