@@ -20,13 +20,13 @@ import { getQueuesProcessors } from "../utilities/QueueProcessors";
2020import { loggerFactory } from "../utilities/LoggerFactory" ;
2121import { MatchServerMiddlewareMiddleware } from "../matches/match-server-middleware/match-server-middleware.middleware" ;
2222import { MarkDedicatedServerOffline } from "./jobs/MarkDedicatedServerOffline" ;
23- import { LoggingServiceService } from "./logging-service/logging-service.service" ;
2423import { RedisModule } from "src/redis/redis.module" ;
2524import { NotificationsModule } from "src/notifications/notifications.module" ;
2625import { RconModule } from "src/rcon/rcon.module" ;
2726import { CheckServerPluginVersions } from "./jobs/CheckServerPluginVersions" ;
2827import { HasuraService } from "src/hasura/hasura.service" ;
2928import { GetPluginVersions } from "./jobs/GetPluginVersions" ;
29+ import { K8sModule } from "src/k8s/k8s.module" ;
3030
3131@Module ( {
3232 providers : [
@@ -38,7 +38,6 @@ import { GetPluginVersions } from "./jobs/GetPluginVersions";
3838 CheckServerPluginVersions ,
3939 ...getQueuesProcessors ( "GameServerNode" ) ,
4040 loggerFactory ( ) ,
41- LoggingServiceService ,
4241 ] ,
4342 imports : [
4443 RedisModule ,
@@ -47,6 +46,7 @@ import { GetPluginVersions } from "./jobs/GetPluginVersions";
4746 CacheModule ,
4847 NotificationsModule ,
4948 RconModule ,
49+ K8sModule ,
5050 BullModule . registerQueue (
5151 {
5252 name : GameServerQueues . GameUpdate ,
@@ -73,7 +73,7 @@ import { GetPluginVersions } from "./jobs/GetPluginVersions";
7373 } ,
7474 ) ,
7575 ] ,
76- exports : [ LoggingServiceService , GameServerNodeService ] ,
76+ exports : [ GameServerNodeService ] ,
7777 controllers : [ GameServerNodeController ] ,
7878} )
7979export class GameServerNodeModule implements OnApplicationBootstrap {
0 commit comments