chore(): resolve merge conflicts

This commit is contained in:
Kamil Myśliwiec
2021-02-04 15:09:09 +01:00
97 changed files with 3579 additions and 298684 deletions

View File

@@ -305,7 +305,9 @@ export class ClientGrpcProxy extends ClientProxy implements ClientGrpc {
}
public close() {
this.grpcClients.forEach(client => client.close());
this.grpcClients
.filter(client => client && isFunction(client.close))
.forEach(client => client.close());
this.grpcClients = [];
}