mh_frame_sps/APT.Infrastructure.Api/Model/NeedRetryExceptions.cs

19 lines
385 B
C#
Raw Normal View History

2026-04-07 13:47:52 +08:00
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"
};
}
}
}