Skip to content

Commit

Permalink
chore: remove notify post route
Browse files Browse the repository at this point in the history
  • Loading branch information
ToxicToast committed May 10, 2024
1 parent 143de4c commit 804460a
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 43 deletions.
8 changes: 1 addition & 7 deletions apps/azkaban-gateway/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ import { RouterModule } from '@nestjs/core';
import { ThrottlerModule } from '@nestjs/throttler';
import { GroupsModule } from './groups/groups.module';
import { VersionModule } from './version/version.module';
import { ClientsModule, Transport } from '@nestjs/microservices';
import { ClientsModule } from '@nestjs/microservices';
import { azkaban, clientProvider } from '@toxictoast/azkaban-broker-rabbitmq';
import { NotifyModule } from './notify/notify.module';

@Module({
imports: [
Expand Down Expand Up @@ -43,7 +42,6 @@ import { NotifyModule } from './notify/notify.module';
UsersModule,
GroupsModule,
VersionModule,
NotifyModule,
//
RouterModule.register([
{
Expand All @@ -70,10 +68,6 @@ import { NotifyModule } from './notify/notify.module';
path: 'version',
module: VersionModule,
},
{
path: 'notify',
module: NotifyModule,
},
]),
],
})
Expand Down
28 changes: 0 additions & 28 deletions apps/azkaban-gateway/src/app/notify/notify.controller.ts

This file was deleted.

7 changes: 0 additions & 7 deletions apps/azkaban-gateway/src/app/notify/notify.module.ts

This file was deleted.

1 change: 0 additions & 1 deletion apps/azkaban-webhooks/src/app/health/health.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export class HealthController {
queue: azkaban,
},
}),
() => this.database.pingCheck('postgres'),
]);
}
}

0 comments on commit 804460a

Please sign in to comment.