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
ClimaDiagnostics is supposed to de-deuplicate diagnostics, but this is not always working correctly. The reason for this is that ClimaDiagnostics uses unique to identify duplicates. In turn, unique uses == to determine equality. Since we don't implement == for ScheduledDiagnostics, this defaults to ===, which does not what we want for RefValues.
The text was updated successfully, but these errors were encountered:
ClimaDiagnostics
is supposed to de-deuplicate diagnostics, but this is not always working correctly. The reason for this is thatClimaDiagnostics
usesunique
to identify duplicates. In turn,unique
uses==
to determine equality. Since we don't implement==
forScheduledDiagnostics
, this defaults to===
, which does not what we want forRefValues
.The text was updated successfully, but these errors were encountered: