Alexander S.
Alexander S.
The problem is in the Sunspot::Mongoid::DataAccessor#load_all(ids) method. Finally it tries to load the records in this way ``` ruby def load_all(ids) criteria(ids) end private def criteria(id) @clazz.criteria.find(id) end ``` But...
Also cause this warning: ``` Mon Aug 6 08:41:04 [conn13] warning: ClientCursor::yield can't unlock b/c of recursive lock ns: crm_production.sunspot_index_queue_entries top: { opid: 1305, active: true, lockType: "write", waitingForLock: false,...
To make `wrap_parameters` work in API constollers I usually add this: ```ruby class ApiController < ActionController::API respond_to :json wrap_parameters format: [:json] end ```
This part is causing the issue ```CXX // Commits in the error page process must only be failures, otherwise // successful navigations could commit documents from origins different // than...
> See https://groups.google.com/a/chromium.org/g/chromium-dev/c/9Nmw91P45wM w.r.t to the discussion about `--single-process` It seems a must for us, otherwise chromium just won't start in an environment such as Lambda. I tried to but...
Submitted to https://issues.chromium.org/issues/332736061
I feel bad already each time I hear the word Lambda 🙂 But yes, that's where I see this.
@OrKoN I've installed the versions following this guide https://pptr.dev/chromium-support. The memory was the first thing I suspect but in this case, there's enough free memory and I had this issue...
I wish I could but I'm struggling to reproduce this. I've been debugging this all day, though found one website that causes the bug in 4 of 5 crawls –...
Yeah, I definitely will submit to @sparticuz/chromium. My initial thought was that Puppeter should be able to get rid of a dead browser whatever the underlying issue is but now...