We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1704c8 commit 57b4312Copy full SHA for 57b4312
roles/lib/files/FWO.Report/ReportBase.cs
@@ -254,7 +254,8 @@ public static string ToUtcString(string? timestring)
254
using IBrowser? browser = await Puppeteer.LaunchAsync(new LaunchOptions
255
{
256
ExecutablePath = brw.GetExecutablePath(),
257
- Headless = true
+ Headless = true,
258
+ Args = new[ ] { "--disable-setuid-sandbox" }
259
});
260
261
try
roles/tests-unit/files/FWO.Test/HtmlToPdfTest.cs
@@ -52,7 +52,8 @@ public async Task GeneratePdf()
52
53
54
55
56
+ Args = new[] { "--disable-setuid-sandbox" }
57
58
59
0 commit comments