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
[Node #1(node-1)][ERROR][1/23/2020 8:51:21 PM][Thread 0018][akka://ClusterMetricsEnabledSpec/system/log2-TestEventListener] The type initializer for 'Akka.Cluster.Metrics.Serialization.ClusterMetricsMessagesReflection' threw an exception.
This looks like a Message property of TypeInitializationException class - and usually the real issue is stored in InnerException property (or it's InnerException, or even deeper - but you got the idea).
Currently, NodeTestRunner is catching AggregateException and adding it's inner exceptions to failure report (logging them as well) - but for general Exception type only wrapping exception is logged, which is not enough in some cases (like above).
So need to report all inner exceptions of any thrown exception.
The text was updated successfully, but these errors were encountered:
Having this line in MNTR logs:
This looks like a
Message
property ofTypeInitializationException
class - and usually the real issue is stored inInnerException
property (or it'sInnerException
, or even deeper - but you got the idea).Currently,
NodeTestRunner
is catchingAggregateException
and adding it's inner exceptions to failure report (logging them as well) - but for generalException
type only wrapping exception is logged, which is not enough in some cases (like above).So need to report all inner exceptions of any thrown exception.
The text was updated successfully, but these errors were encountered: