19 lines
385 B
C#
19 lines
385 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace APT.Infrastructure.Api.Model
|
|
{
|
|
public static class NeedRetryExceptions
|
|
{
|
|
public static List<string> RetryExceptions()
|
|
{
|
|
return new List<string>()
|
|
{
|
|
"transient failure",
|
|
"EntityFrameworkCore"
|
|
};
|
|
}
|
|
}
|
|
}
|