Satvik Patel
Satvik Patel
getting error System.IO.IOException: Read-only file system : '/var/task/chrome-linux64.zip while downloading the chrome
try using splitquery , might works return await _context.Set() .Include(x => x.ConsultationViews).ThenInclude(x => x.ConsultationItems).ThenInclude(x => x.Item) .AsSplitQuery() .FirstOrDefaultAsync(p => p.VisitNumber == key);
alternative you can use return await _context.Set() .AsNoTracking() .Where(p => p.VisitNumber == key) .Select(v => new { v.VisitNumber, ConsultationViews = v.ConsultationViews.Select(cv => new { cv.Id, ConsultationItems = cv.ConsultationItems.Select(ci => new...
thanks for the update
System.Net.WebSockets can you dig further for above dll used in puppeteersharp lib ? might causing a issue
i have tried by giving multiple target frameworks, but it seems to be not working as expected as many dependenies need to be downgrade, can't you upgrade PuppeteerSharp project to...
let me try out by downgrading the projects dependencies and giving multiple target frameworks , hope it works
fixed by below code .. string[] args = { "--disable-setuid-sandbox", "--disable-dev-shm-usage", "--no-sandbox", "--single-process"}; var launchOptions = new LaunchOptions() { ExecutablePath = chromeLocation, Args = args, Headless = true, //Timeout =...
> [@satviktechie1986](https://github.com/satviktechie1986) / [@limhjgrace](https://github.com/limhjgrace) has there been any progress on this issue? We are experiencing a similar issue on our project using aws-rum-web 1.25.0 with angular version 19. When we...