From 7ae2c526b290378e37514d1ede16f3218ada0eb9 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 20 Aug 2019 12:02:26 +0200 Subject: [PATCH] Add protocol to RegistryClientConfig --- .../Avro/schema_registry/CachedSchemaRegistryClient.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Avro/schema_registry/CachedSchemaRegistryClient.ts b/src/components/Avro/schema_registry/CachedSchemaRegistryClient.ts index 1d26d9f..377e5bf 100644 --- a/src/components/Avro/schema_registry/CachedSchemaRegistryClient.ts +++ b/src/components/Avro/schema_registry/CachedSchemaRegistryClient.ts @@ -23,6 +23,7 @@ export class CachedSchemaRegistryClient implements SchemaRegistry { host: config.host, port: config.port, logger: (config.logger !== undefined) ? config.logger : this._defaultLogger, + protocol: config.protocol, }; this.client = new RegistryClient(clientConfig); }