From b100f2fedf3115a3b331a6770235a3044710133d Mon Sep 17 00:00:00 2001 From: Scott Bilas Date: Sat, 17 Aug 2024 20:25:51 +0100 Subject: [PATCH] Forgot to finish this --- src/Stale.Cli/LongTasks.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Stale.Cli/LongTasks.cs b/src/Stale.Cli/LongTasks.cs index d4fb468..2220ae1 100644 --- a/src/Stale.Cli/LongTasks.cs +++ b/src/Stale.Cli/LongTasks.cs @@ -66,7 +66,7 @@ LongTask Run(string taskName, bool weak, Func action, C // doing this through ctx so that in the future i can do a little nicer handling of a background task // failure, like adding extra supporting data to a log file or whatever. - var task = new LongTask(taskName, true, new StackTrace()); + var task = new LongTask(taskName, weak, new StackTrace()); var assigned = false; async Task LongAction()