diff --git a/src/MicroBatchFramework/BatchEngine.cs b/src/MicroBatchFramework/BatchEngine.cs index 15ac5a1e..8be0b5d4 100644 --- a/src/MicroBatchFramework/BatchEngine.cs +++ b/src/MicroBatchFramework/BatchEngine.cs @@ -397,6 +397,11 @@ class CustomSorter : IComparer { public int Compare(MethodInfo x, MethodInfo y) { + if (x.Name == y.Name) + { + return 0; + } + var xc = x.GetCustomAttribute(); var yc = y.GetCustomAttribute();