Fix settings log tail reads
PR and Push Build/Test / build-and-test (push) Failing after 12m50s

This commit is contained in:
2026-05-30 14:25:35 +02:00
parent 0342cff64f
commit fd8c33f1ea
3 changed files with 35 additions and 8 deletions
@@ -166,7 +166,7 @@ public sealed class WorkflowRulesEditorTools
return $"Log file was not found: {logFile ?? MeetingAssistantLogFiles.CurrentLogFileName}";
}
var content = await File.ReadAllTextAsync(path);
var content = await AgentFileToolContent.ReadAllTextSharedAsync(path);
if (from.HasValue || to.HasValue)
{
return AgentFileToolContent.ReadLines(content, from, to);