【问题标题】:Nestjs UnhandledPromiseRejectionWarning: TypeError: this.flushLogs is not a functionNestjs UnhandledPromiseRejectionWarning: TypeError: this.flushLogs 不是函数
【发布时间】:2021-09-26 06:40:10
【问题描述】:

我想学习如何使用 kafka 和 nestjs 创建微服务。但我收到如下错误

[Nest] 61226   - 07/18/2021, 12:12:16 PM   [NestFactory] Starting Nest application...
[Nest] 61226   - 07/18/2021, 12:12:16 PM   [InstanceLoader] AppModule dependencies initialized +27ms
[Nest] 61226   - 07/18/2021, 12:12:16 PM   [ServerKafka] INFO [Consumer] Starting {"timestamp":"2021-07-18T05:12:16.850Z","logger":"kafkajs","groupId":"group-account-server"}
[Nest] 61226   - 07/18/2021, 12:12:41 PM   [ServerKafka] INFO [ConsumerGroup] Consumer has joined the group {"timestamp":"2021-07-18T05:12:41.984Z","logger":"kafkajs","groupId":"group-account-server","memberId":"nestjs-consumer-server-d90648a1-60cf-4c23-8237-94ab2ea106d5","leaderId":"nestjs-consumer-server-d90648a1-60cf-4c23-8237-94ab2ea106d5","isLeader":true,"memberAssignment":{},"groupProtocol":"RoundRobinAssigner","duration":25120}
(node:61226) UnhandledPromiseRejectionWarning: TypeError: this.flushLogs is not a function
    at /Users/skinnyguy/Projects2020/microservices-lamexpress/kafka-services/node_modules/@nestjs/microservices/nest-microservice.js:88:26
    at ServerKafka.listen (/Users/skinnyguy/Projects2020/microservices-lamexpress/kafka-services/node_modules/@nestjs/microservices/server/server-kafka.js:43:13)
    at processTicksAndRejections (internal/process/task_queues.js:95:5)
(Use `node --trace-warnings ...` to show where the warning was created)
(node:61226) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 2)
(node:61226) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

如何解决这个错误?

这是我的 main.ts 文件

import { NestFactory } from '@nestjs/core';
import { MicroserviceOptions } from '@nestjs/microservices';
import { AppModule } from './app.module';
import { KafkaConsumerOptions } from './infrastructure/kafka/kafka.config';

async function bootstrap() {
    const app = await NestFactory.create(AppModule);

    app.connectMicroservice<MicroserviceOptions>(KafkaConsumerOptions);

    await app.startAllMicroservicesAsync();
    await app.listen(3000);
    console.log(`Application running in url ${app.getUrl()}`);
}
bootstrap();

这是我的 Kafka 配置

import {
    ClientOptions,
    MicroserviceOptions,
    Transport,
} from '@nestjs/microservices';
import * as dotenv from 'dotenv';

dotenv.config();

export const KafkaConsumerOptions: MicroserviceOptions = {
    transport: Transport.KAFKA,
    options: {
        client: {
            brokers: [process.env.KAFKA_HOST],
        },
        // list of consumer
        consumer: {
            groupId: 'group-account',
        },
    },
};

这里有人用 kafka 和 nestjs 创建过微服务吗?请分享。谢谢

【问题讨论】:

  • 问题解决了
  • 你是怎么解决的@Didot?

标签: node.js typescript microservices


【解决方案1】:

检查你的 nestjs 版本。 @nestjs/microservices 必须与@nestjs/core 版本相同

【讨论】:

  • 就是这样
猜你喜欢
  • 2020-06-26
  • 2021-10-27
  • 1970-01-01
  • 2021-05-31
  • 2021-08-07
  • 2020-06-08
  • 2018-05-20
  • 2023-03-05
  • 2019-12-17
相关资源
最近更新 更多