fix:修复部分数据库查询问题
Some checks failed
ci / release-gate (push) Has been cancelled

This commit is contained in:
2026-08-03 14:22:06 +08:00
parent 9f19bea7ee
commit 2c4a0bad6c
8 changed files with 136 additions and 40 deletions

View File

@@ -4,6 +4,7 @@ public sealed class DomainLifecycleOptions
{
public bool Enabled { get; set; } = true;
public int PollSeconds { get; set; } = 60;
public int MaxIdlePollSeconds { get; set; } = 300;
public int BatchSize { get; set; } = 50;
public string DnsJsonEndpoint { get; set; } = "https://cloudflare-dns.com/dns-query";
public string VerificationRecordPrefix { get; set; } = "_tiku-verification";
@@ -38,4 +39,4 @@ public interface ITenantDomainLifecycleService
public interface ITenantRuntimeCacheInvalidator
{
Task InvalidateAsync(Guid tenantId, CancellationToken cancellationToken = default);
}
}