1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-08 03:15:07 -05:00

alive endpoint and logging

This commit is contained in:
Kyle Spearrin
2019-08-03 23:16:31 -04:00
parent 180c3510a4
commit 928e1b6ad4
2 changed files with 8 additions and 0 deletions

View File

@ -35,6 +35,7 @@ namespace Bit.EventsProcessor
public Task StartAsync(CancellationToken cancellationToken)
{
_logger.LogWarning("Starting service.");
_cts = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken);
_executingTask = ExecuteAsync(_cts.Token);
return _executingTask.IsCompleted ? _executingTask : Task.CompletedTask;