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 e22ee7a commit 899f83bCopy full SHA for 899f83b
src/main/scala/org/apache/pekko/monitor/instrumentation/CellInfo.scala
@@ -37,7 +37,7 @@ object CellInfo {
37
val pathString = ref.path.elements.mkString("/")
38
val isTyped = cell.props.actorClass().getName == TypedActorAdapterClassName
39
val isRootSupervisor = if (isTyped)
40
- pathString != "user"
+ pathString.isEmpty || pathString == "system"
41
else
42
pathString.isEmpty || pathString == "user" || pathString == "system"
43
val isRouter = hasRouterProps(cell)
0 commit comments