Skip to content

Commit

Permalink
Merge pull request #5627 from smhmayboudi/5599-fix-kafkaserver-constr…
Browse files Browse the repository at this point in the history
…uctor

fix(microservice): Fix KafkaServer constructor
  • Loading branch information
kamilmysliwiec authored Nov 2, 2020
2 parents 009d999 + 5b8d765 commit 739878b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/microservices/server/server-kafka.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class ServerKafka extends Server implements CustomTransportStrategy {
protected clientId: string;
protected groupId: string;

constructor(private readonly options: KafkaOptions['options']) {
constructor(protected readonly options: KafkaOptions['options']) {
super();

const clientOptions =
Expand Down

0 comments on commit 739878b

Please sign in to comment.