Skip to content

Commit

Permalink
fix(core): Fix Panic due to interface conversion
Browse files Browse the repository at this point in the history
Signed-off-by: Anurag Rajawat <[email protected]>
  • Loading branch information
anurag-rajawat committed Apr 14, 2024
1 parent 058fa6f commit 180208c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentryflow/core/k8sHandler.go
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ func (kh *K8sHandler) PatchIstioConfigMap() error {

// Append eps to the existing slice
if !duplicate {
meshConfig["extensionProviders"] = append(ep.([]map[interface{}]interface{}), eps)
meshConfig["extensionProviders"] = append(ep.([]interface{}), eps)
}
}

Expand Down

0 comments on commit 180208c

Please sign in to comment.