Skip to content

Commit 16c30df

Browse files
authored
fix config file name
1 parent 2ed094a commit 16c30df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Commands/KafkaConsumeCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ public function handle(HighLevelConsumer $highLevelConsumer): int
6060
$processorData = $this->findMatchedProcessor($topicKey, $consumer);
6161
if (is_null($processorData)) {
6262
$this->error("Processor for topic-key \"$topicKey\" and consumer \"$consumer\" is not found");
63-
$this->line('Processors are set in /config/kafka-consumers.php');
63+
$this->line('Processors are set in /config/kafka-consumer.php');
6464

6565
return 1;
6666
}
6767

6868
if (!class_exists($processorData->class)) {
6969
$this->error("Processor class \"$processorData->class\" is not found");
70-
$this->line('Processors are set in /config/kafka-consumers.php');
70+
$this->line('Processors are set in /config/kafka-consumer.php');
7171

7272
return 1;
7373
}

0 commit comments

Comments
 (0)