Skip to content

Commit 85a8c6f

Browse files
author
Vytautas Kasparavičius
committed
Updated project file nuget section
2 parents 0e64aa1 + bed4ec1 commit 85a8c6f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/Hangfire.PostgreSql/Hangfire.PostgreSql.csproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Description>PostgreSql storage implementation for Hangfire (background job system for ASP.NET applications).</Description>
4+
<Description>PostgreSql storage implementation for Hangfire (background job system for ASP.NET and aspnet core applications).</Description>
55
<Copyright>Copyright © 2014-2020 Frank Hommers and others</Copyright>
66
<AssemblyTitle>Hangfire PostgreSql Storage</AssemblyTitle>
77
<VersionPrefix>1.5.0</VersionPrefix>
8-
<Authors>Frank Hommers and others (Burhan Irmikci (barhun), Zachary Sims(zsims), kgamecarter, Stafford Williams (staff0rd), briangweber, Viktor Svyatokha (ahydrax), Christopher Dresel (Dresel), Ben Herila (bherila), Vytautas Kasparavičius (vytautask)</Authors>
8+
<Authors>Frank Hommers and others (Burhan Irmikci (barhun), Zachary Sims(zsims), kgamecarter, Stafford Williams (staff0rd), briangweber, Viktor Svyatokha (ahydrax), Christopher Dresel (Dresel), Vytautas Kasparavičius (vytautask), Vincent Vrijburg, David Roth (davidroth).</Authors>
99
<TargetFrameworks>netstandard2.0;net451</TargetFrameworks>
1010
<AssemblyName>Hangfire.PostgreSql</AssemblyName>
1111
<OutputType>Library</OutputType>
@@ -21,6 +21,7 @@
2121
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
2222
<RepositoryUrl>https://github.com/frankhommers/Hangfire.PostgreSql</RepositoryUrl>
2323
<RepositoryType>git</RepositoryType>
24+
<Company>Frank Hommers and others (Burhan Irmikci (barhun), Zachary Sims(zsims), kgamecarter, Stafford Williams (staff0rd), briangweber, Viktor Svyatokha (ahydrax), Christopher Dresel (Dresel), Vytautas Kasparavičius (vytautask), Vincent Vrijburg, David Roth (davidroth).</Company>
2425
</PropertyGroup>
2526

2627
<ItemGroup>

src/Hangfire.PostgreSql/PostgreSqlWriteOnlyTransaction.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public override void Commit()
6969
var transactionOptions = new TransactionOptions()
7070
{
7171
IsolationLevel = isolationLevel,
72-
Timeout = _options.TransactionSynchronisationTimeout
72+
Timeout = TransactionManager.MaximumTimeout
7373
};
7474

7575
using (var transaction = new TransactionScope(scopeOption, transactionOptions))

0 commit comments

Comments
 (0)