Skip to content

Commit

Permalink
fix(tcp): removes second interceptor binding in integration
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcdo29 committed Apr 6, 2020
1 parent bf0eb6b commit 8929d9e
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions integration/tcp/src/server/app.controller.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
import {
BadRequestException,
Controller,
UseInterceptors,
} from '@nestjs/common';
import { BadRequestException, Controller } from '@nestjs/common';
import { MessagePattern } from '@nestjs/microservices';
import { OgmaInterceptor, OgmaSkip } from '@ogma/nestjs-module';
import { OgmaSkip } from '@ogma/nestjs-module';
import { AppService } from './app.service';

@UseInterceptors(OgmaInterceptor)
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
Expand Down

0 comments on commit 8929d9e

Please sign in to comment.