Skip to content

Commit 506372a

Browse files
Fix readme
1 parent 627c6a9 commit 506372a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ I may simplify the implementation later, but I think this code is pretty painles
8080
CountersAggregateInterval = TimeSpan.FromMinutes(5),
8181
UpdateSchema = true,
8282
DashboardJobListLimit = 50000,
83-
InvisibilityTimeout = TimeSpan.FromMinutes(15),
83+
InvisibilityTimeout = TimeSpan.FromMinutes(15),
8484
TransactionTimeout = TimeSpan.FromMinutes(1),
85-
DefaultSchema = null, // use database provider's default schema
86-
TablePrefix = "Hangfire_"
85+
DefaultSchema = null, // use database provider's default schema
86+
TablePrefix = "Hangfire_"
8787
};
8888
89-
//THIS SECTION GETS THE STORAGE PROVIDER. CHANGE THE ENUM VALUE ON THE NEXT LINE FOR
90-
//YOUR PARTICULAR RDBMS
89+
//THIS SECTION GETS THE STORAGE PROVIDER. CHANGE THE ENUM VALUE ON THE NEXT LINE FOR
90+
//YOUR PARTICULAR RDBMS
9191
9292
var storage = FluentNHibernateStorageFactory.For(ProviderTypeEnum.MySQL, "MyConnectionStringHere", options);
9393
@@ -121,14 +121,14 @@ namespace Hangfire.FluentNHibernate.SampleApplication
121121
CountersAggregateInterval = TimeSpan.FromMinutes(5),
122122
UpdateSchema = true,
123123
DashboardJobListLimit = 50000,
124-
InvisibilityTimeout = TimeSpan.FromMinutes(15),
124+
InvisibilityTimeout = TimeSpan.FromMinutes(15),
125125
TransactionTimeout = TimeSpan.FromMinutes(1),
126-
DefaultSchema = null, // use database provider's default schema
127-
TablePrefix = "Hangfire_"
126+
DefaultSchema = null, // use database provider's default schema
127+
TablePrefix = "Hangfire_"
128128
};
129129
130130
//THIS SECTION GETS THE STORAGE PROVIDER. CHANGE THE ENUM VALUE ON THE NEXT LINE FOR
131-
//YOUR PARTICULAR RDBMS
131+
//YOUR PARTICULAR RDBMS
132132
133133
var PersistenceConfigurerType = ProviderTypeEnum.MsSql2012;
134134
var connectionString = ConfigurationManager.ConnectionStrings["someConnectionString"].ConnectionString;

0 commit comments

Comments
 (0)