File tree 2 files changed +2
-2
lines changed
src/Hangfire.Core/Dashboard/Pages
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 13
13
var servers = monitor .Servers ();
14
14
var now = StorageUtcNow ?? ApplicationUtcNow ;
15
15
var inconclusiveThreshold = DashboardOptions .ServerPossiblyAbortedThreshold ;
16
- var possiblyAbortedThreshold = TimeSpan .FromSeconds (possiblyAbortedThreshold .TotalSeconds * 2 );
16
+ var possiblyAbortedThreshold = TimeSpan .FromSeconds (inconclusiveThreshold .TotalSeconds * 2 );
17
17
}
18
18
19
19
<div class =" row" >
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ public override void Execute()
78
78
var servers = monitor . Servers ( ) ;
79
79
var now = StorageUtcNow ?? ApplicationUtcNow ;
80
80
var inconclusiveThreshold = DashboardOptions . ServerPossiblyAbortedThreshold ;
81
- var possiblyAbortedThreshold = TimeSpan . FromSeconds ( possiblyAbortedThreshold . TotalSeconds * 2 ) ;
81
+ var possiblyAbortedThreshold = TimeSpan . FromSeconds ( inconclusiveThreshold . TotalSeconds * 2 ) ;
82
82
83
83
84
84
You can’t perform that action at this time.
0 commit comments