mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
Fix SIGSEGV in StorageKafka when broker is unavailable
This commit is contained in:
parent
58ba72c7b6
commit
e2d9176617
@ -35,7 +35,7 @@ public:
|
||||
void readSuffixImpl() override;
|
||||
|
||||
void commit();
|
||||
bool isStalled() const { return buffer->isStalled(); }
|
||||
bool isStalled() const { return !buffer || buffer->isStalled(); }
|
||||
|
||||
private:
|
||||
StorageKafka & storage;
|
||||
|
Loading…
Reference in New Issue
Block a user