We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2cadc1 commit ea2d326Copy full SHA for ea2d326
1 file changed
packages/microservices/server/server-rmq.ts
@@ -12,7 +12,6 @@ import {
12
RQM_DEFAULT_URL,
13
} from '../constants';
14
import { CustomTransportStrategy, RmqOptions } from '../interfaces';
15
-import { MicroserviceOptions } from '../interfaces/microservice-configuration.interface';
16
import { Server } from './server';
17
18
let rqmPackage: any = {};
@@ -72,7 +71,7 @@ export class ServerRMQ extends Server implements CustomTransportStrategy {
72
71
}
73
74
public createClient<T = any>(): T {
75
- const socketOptions = this.getOptionsProp<RmqOptions>(this.options, 'socketOptions');
+ const socketOptions = this.getOptionsProp(this.options, 'socketOptions');
76
return rqmPackage.connect(this.urls, socketOptions);
77
78
0 commit comments