We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2784287 commit aee8d9dCopy full SHA for aee8d9d
core/invoker/src/main/scala/org/apache/openwhisk/core/invoker/InstanceIdAssigner.scala
@@ -40,7 +40,7 @@ private[invoker] class InstanceIdAssigner(connectionString: String)(implicit log
40
logger.info(this, "invokerReg: connected to zookeeper")
41
42
val rootPath = "/invokers/idAssignment/mapping"
43
- val myIdPath = rootPath + s"/$name"
+ val myIdPath = s"$rootPath/$name"
44
val assignedId = if (overwriteId.isEmpty) {
45
Option(zkClient.checkExists().forPath(myIdPath)) match {
46
case None =>
0 commit comments