Skip to content

Commit

Permalink
Fix the previous analysis result missing in the ALS k8s-mesh analyz…
Browse files Browse the repository at this point in the history
…er (#12611)
  • Loading branch information
mrproliu committed Sep 12, 2024
1 parent a71d7ef commit 0f79e35
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/en/changes/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
* Add self-observability metrics for OpenTelemetry receiver.
* Support service level metrics aggregate when missing pod context in eBPF Access Log Receiver.
* Fix query `getGlobalTopology` throw exception when didn't find any services by the given Layer.
* Fix the previous analysis result missing in the ALS `k8s-mesh` analyzer.

#### UI

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ public Result analysis(
return result;
}
return analyzeSideCar(result, entry);
case NONE:
// For the Ambient Istio with waypoint mode, the role is NONE.
// The analysis should keep the result from other roles.
return result;
}

return Result.builder().build();
Expand Down

0 comments on commit 0f79e35

Please sign in to comment.