Skip to content

Commit

Permalink
Tmate.
Browse files Browse the repository at this point in the history
  • Loading branch information
SvenGroot committed Sep 26, 2023
1 parent 438039e commit 7403bfe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,7 @@ jobs:
run: dotnet restore src
- name: Build
run: dotnet build src --no-restore --configuration Release
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
- name: Test
run: dotnet test src --no-build --verbosity detailed --configuration Release
1 change: 0 additions & 1 deletion src/TaskServer/TaskRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ public void CleanupJobTasks(Guid jobID)
var tasksToRemove = (from item in _runningTasks
where item.Value.JobId == jobID
select item.Key).ToArray();
_log.InfoFormat("Tasks to remove: {0}", tasksToRemove.Length);
foreach (var task in tasksToRemove)
{
if (_runningTasks[task].State == TaskAttemptStatus.Running)
Expand Down

0 comments on commit 7403bfe

Please sign in to comment.