Skip to content

Commit

Permalink
fix reindex storeCache missing EventEmitterModule (#1585)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiqiang90 authored and stwiname committed Apr 19, 2023
1 parent 6375fd0 commit c9d5987
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/node/src/subcommands/reindex.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
// SPDX-License-Identifier: Apache-2.0

import { Module } from '@nestjs/common';
import { EventEmitterModule } from '@nestjs/event-emitter';
import {
DbModule,
MmrService,
NodeConfig,
StoreCacheService,
StoreService,
} from '@subql/node-core';
Expand Down Expand Up @@ -42,6 +42,7 @@ export class ReindexFeatureModule {}
DbModule.forRoot(),
ConfigureModule.register(),
ReindexFeatureModule,
EventEmitterModule.forRoot(),
],
controllers: [],
})
Expand Down

0 comments on commit c9d5987

Please sign in to comment.