Skip to content

Commit

Permalink
load only Nethermind metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
tkstanczak committed Oct 3, 2020
1 parent acabaaa commit 0fa1637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Nethermind/Nethermind.Core/TypeDiscovery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private void LoadAll()
loadedAssemblies = AppDomain.CurrentDomain.GetAssemblies();
} while (LoadOnce(loadedAssemblies.ToList()) != 0);

foreach (Assembly assembly in loadedAssemblies)
foreach (Assembly assembly in loadedAssemblies.Where(a => a.FullName?.Contains("Nethermind") ?? false))
{
_nethermindAssemblies.Add(assembly);
}
Expand Down

0 comments on commit 0fa1637

Please sign in to comment.