We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36a87f3 commit a917c69Copy full SHA for a917c69
1 file changed
FurLab.CLI/Commands/Query/Run/QueryRunCommand.cs
@@ -472,10 +472,13 @@ await AnsiConsole.Status()
472
csvExporter.WriteLogEntry(logFilePath, logEntry);
473
}
474
475
- finally
+ catch (Exception ex)
476
{
477
- writerCompleted.SetResult();
+ writerCompleted.TrySetException(ex);
478
+ return;
479
480
+
481
+ writerCompleted.TrySetResult();
482
});
483
484
var resultsTable = new Table()
0 commit comments