Upgrading dotnet version to 6.0.300 (#1947)

This commit is contained in:
Cheick Keita
2022-05-16 09:25:02 -07:00
committed by GitHub
parent 3dd27be55b
commit a3e63df18d
4 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ public class TimerTasks {
var expiredJobs = _jobOperations.SearchExpired();
await foreach (var job in expiredJobs) {
_logger.Info($"stopping expired job. job_id:{job.JobId }");
_logger.Info($"stopping expired job. job_id:{job.JobId}");
await _jobOperations.Stopping(job, _taskOperations);
}

View File

@ -66,7 +66,7 @@ public class TaskOperations : StatefulOrm<Task, TaskState>, ITaskOperations {
}
public IAsyncEnumerable<Task> SearchExpired() {
var timeFilter = $"end_time lt Datetime'{DateTimeOffset.UtcNow.ToString("o") }'";
var timeFilter = $"end_time lt Datetime'{DateTimeOffset.UtcNow.ToString("o")}'";
return QueryAsync(filter: timeFilter);
}

View File

@ -149,7 +149,7 @@ namespace ApiService.OneFuzzLib.Orm {
});
if (func != null) {
_logTracer.Info($"processing state update: {typeof(T)} - PartitionKey {_partitionKeyGetter?.Value() } {_rowKeyGetter?.Value() } - %s");
_logTracer.Info($"processing state update: {typeof(T)} - PartitionKey {_partitionKeyGetter?.Value()} {_rowKeyGetter?.Value()} - %s");
return await func(entity);
}
return null;