Skip to content

Commit

Permalink
v1.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
2881099 committed May 30, 2023
1 parent 06e363c commit ee558a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/FreeSql.Cloud/FreeSql.Cloud.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFrameworks>netstandard20;net40</TargetFrameworks>
<Version>1.6.5</Version>
<Version>1.6.6</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>FreeSql;ncc;YeXiangQin</Authors>
<Description>提供跨数据库访问,分布式事务TCC、SAGA解决方案,支持 .NET Core 2.1+, .NET Framework 4.0+.</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/FreeSql.Cloud/FreeSqlCloud.cs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ public SagaMaster<TDBKey> StartSaga(string tid, string title, SagaOptions option
public GlobalFilter GlobalFilter => _ormCurrent.GlobalFilter;
public void Dispose()
{
if (_distributeTraceEnable) _distributedTraceCall($"准备释放, 当前未完成事务 {_scheduler.QuantityTempTask}");
if (_distributeTraceEnable && _scheduler != null) _distributedTraceCall($"准备释放, 当前未完成事务 {_scheduler.QuantityTempTask}");
_scheduler?.Dispose();
_ib.Dispose();
if (_distributeTraceEnable) _distributedTraceCall($"成功释放");
Expand Down

0 comments on commit ee558a3

Please sign in to comment.