fix(identity-service): add BlockchainEventConsumerService to InfrastructureModule
The consumer was not being initialized because it was not registered in the module.
This commit is contained in:
parent
bad6ba2232
commit
106137224a
|
|
@ -8,6 +8,7 @@ import { UserAccountMapper } from './persistence/mappers/user-account.mapper';
|
||||||
import { RedisService } from './redis/redis.service';
|
import { RedisService } from './redis/redis.service';
|
||||||
import { EventPublisherService } from './kafka/event-publisher.service';
|
import { EventPublisherService } from './kafka/event-publisher.service';
|
||||||
import { MpcEventConsumerService } from './kafka/mpc-event-consumer.service';
|
import { MpcEventConsumerService } from './kafka/mpc-event-consumer.service';
|
||||||
|
import { BlockchainEventConsumerService } from './kafka/blockchain-event-consumer.service';
|
||||||
import { SmsService } from './external/sms/sms.service';
|
import { SmsService } from './external/sms/sms.service';
|
||||||
import { BlockchainClientService } from './external/blockchain/blockchain-client.service';
|
import { BlockchainClientService } from './external/blockchain/blockchain-client.service';
|
||||||
import { MpcClientService, MpcWalletService } from './external/mpc';
|
import { MpcClientService, MpcWalletService } from './external/mpc';
|
||||||
|
|
@ -33,6 +34,7 @@ import { MPC_KEY_SHARE_REPOSITORY } from '@/domain/repositories/mpc-key-share.re
|
||||||
RedisService,
|
RedisService,
|
||||||
EventPublisherService,
|
EventPublisherService,
|
||||||
MpcEventConsumerService,
|
MpcEventConsumerService,
|
||||||
|
BlockchainEventConsumerService,
|
||||||
SmsService,
|
SmsService,
|
||||||
// BlockchainClientService 调用 blockchain-service API
|
// BlockchainClientService 调用 blockchain-service API
|
||||||
BlockchainClientService,
|
BlockchainClientService,
|
||||||
|
|
@ -50,6 +52,7 @@ import { MPC_KEY_SHARE_REPOSITORY } from '@/domain/repositories/mpc-key-share.re
|
||||||
RedisService,
|
RedisService,
|
||||||
EventPublisherService,
|
EventPublisherService,
|
||||||
MpcEventConsumerService,
|
MpcEventConsumerService,
|
||||||
|
BlockchainEventConsumerService,
|
||||||
SmsService,
|
SmsService,
|
||||||
BlockchainClientService,
|
BlockchainClientService,
|
||||||
MpcClientService,
|
MpcClientService,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue