Skip to content

Commit a8b16ae

Browse files
authored
Merge pull request pardahlman#233 from sachokFoX/feature/fix_typo
fix typo in NamingConventions.RetryLaterExchangeConvention
2 parents 38d1119 + 42b63f7 commit a8b16ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/RawRabbit/Common/NamingConventions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public NamingConventions()
5353
DeadLetterExchangeNamingConvention = () => "default_dead_letter_exchange";
5454
RetryQueueNamingConvention = () => $"retry_{Guid.NewGuid()}";
5555
SubscriberQueueSuffix = GetSubscriberQueueSuffix;
56-
RetryLaterExchangeConvention = span => $"rety_in_{span.TotalMilliseconds}_ms";
56+
RetryLaterExchangeConvention = span => $"retry_in_{span.TotalMilliseconds}_ms";
5757
}
5858

5959
private string GetSubscriberQueueSuffix(Type messageType)
@@ -148,4 +148,4 @@ public static string GetNonGenericTypeName(Type type)
148148
return name[0];
149149
}
150150
}
151-
}
151+
}

0 commit comments

Comments
 (0)