File tree Expand file tree Collapse file tree 4 files changed +3
-11
lines changed
src/Server/Coderr.Server.WebSite
ClientApp/src/app/incidents/details/bugreports Expand file tree Collapse file tree 4 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ <h2 class="text-shadow-1 text-white">Bug reports (sent from users)</h2>
32
32
< div class ="panel ">
33
33
< h2 class ="text-white text-shadow-1 "> Send status updates</ h2 >
34
34
< div class ="fill p-5 ">
35
- < p > There are currently {{emails.length}} user(s) waiting to here about this bug. Write them a small status update.</ p >
35
+ < p > There are currently {{emails.length}} user(s) waiting to hear about this bug. Write them a small status update.</ p >
36
36
< form class ="form " [formGroup] ="form " >
37
37
< div class ="form-group ">
38
38
< label > Subject</ label >
Original file line number Diff line number Diff line change @@ -109,8 +109,6 @@ public void ConfigureEnd(IApplicationBuilder applicationBuilder)
109
109
_appModuleStarter . Start ( context ) ;
110
110
_logger . Info ( "Coderr started successfully." ) ;
111
111
} ;
112
-
113
-
114
112
}
115
113
116
114
public void BeginConfigureServices ( IServiceCollection services )
Original file line number Diff line number Diff line change @@ -30,10 +30,7 @@ public void Start(StartContext context)
30
30
_backgroundJobManager . StartInterval = TimeSpan . FromSeconds ( Debugger . IsAttached ? 0 : 10 ) ;
31
31
_backgroundJobManager . ExecuteInterval = TimeSpan . FromSeconds ( Debugger . IsAttached ? 10 : 30 ) ;
32
32
_backgroundJobManager . ScopeClosing += OnBackgroundJobScopeClosing ;
33
- HostConfig . Instance . Configured += ( sender , args ) =>
34
- {
35
- _backgroundJobManager . Start ( ) ;
36
- } ;
33
+ _backgroundJobManager . Start ( ) ;
37
34
}
38
35
39
36
public void Stop ( )
Original file line number Diff line number Diff line change @@ -30,10 +30,7 @@ public void Start(StartContext context)
30
30
_backgroundJobManager . StartInterval = TimeSpan . FromSeconds ( Debugger . IsAttached ? 0 : 10 ) ;
31
31
_backgroundJobManager . ExecuteInterval = TimeSpan . FromSeconds ( Debugger . IsAttached ? 10 : 30 ) ;
32
32
_backgroundJobManager . ScopeClosing += OnBackgroundJobScopeClosing ;
33
- HostConfig . Instance . Configured += ( sender , args ) =>
34
- {
35
- _backgroundJobManager . Start ( ) ;
36
- } ;
33
+ _backgroundJobManager . Start ( ) ;
37
34
}
38
35
39
36
You can’t perform that action at this time.
0 commit comments