You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val kafkaClusterId:String=ConnectUtils.lookupKafkaClusterId(config)
286
287
logger.debug("Kafka cluster ID: $kafkaClusterId")
@@ -293,15 +294,19 @@ class Stream(override val topologyContext: TopologyContext, val topologyConstruc
293
294
294
295
val workerId:String= advertisedUrl.host.toString() +":"+ advertisedUrl.port
295
296
val worker =Worker(
296
-
workerId, time, plugins, config, offsetBackingStore,
297
+
workerId,
298
+
time,
299
+
plugins,
300
+
config,
301
+
offsetBackingStore,
297
302
connectorClientConfigOverridePolicy
298
303
)
299
304
300
305
val statusBackingStore:StatusBackingStore=KafkaStatusBackingStore(time, worker.getInternalValueConverter())
301
306
statusBackingStore.configure(config)
302
307
303
-
val configBackingStore =KafkaConfigBackingStore(worker.getInternalValueConverter(),config,worker.configTransformer())
304
-
val herder =DistributedHerder(config,time,worker,kafkaClusterId,statusBackingStore,configBackingStore,advertisedUrl.toString(),connectorClientConfigOverridePolicy)
308
+
val configBackingStore =KafkaConfigBackingStore(worker.getInternalValueConverter(),config,worker.configTransformer())
309
+
val herder =DistributedHerder(config,time,worker,kafkaClusterId,statusBackingStore,configBackingStore,advertisedUrl.toString(),connectorClientConfigOverridePolicy)
305
310
306
311
// val herder: Herder = StandaloneHerder(worker, kafkaClusterId, connectorClientConfigOverridePolicy)
307
312
val connect =Connect(herder, rest)
@@ -333,7 +338,7 @@ class Stream(override val topologyContext: TopologyContext, val topologyConstruc
0 commit comments