mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
fixes
This commit is contained in:
parent
2d1e8d17ce
commit
6aaddf2086
1 changed files with 4 additions and 5 deletions
|
@ -580,13 +580,12 @@ static struct vnode_type p;
|
|||
|
||||
__attribute__((constructor(110)))
|
||||
static void register_plugin() {
|
||||
p.name = "kafka";
|
||||
p.description = "Kafka event message streaming (rdkafka)";
|
||||
p.instances.state = State::DESTROYED;
|
||||
p.name = "kafka";
|
||||
p.description = "Kafka event message streaming (rdkafka)";
|
||||
p.vectorize = 0;
|
||||
p.size = sizeof(struct kafka);
|
||||
p.start = kafka_type_start;
|
||||
p.stop = kafka_type_stop;
|
||||
p.type.start = kafka_type_start;
|
||||
p.type.stop = kafka_type_stop;
|
||||
p.destroy = kafka_destroy;
|
||||
p.prepare = kafka_prepare;
|
||||
p.parse = kafka_parse;
|
||||
|
|
Loading…
Add table
Reference in a new issue