mastergberry
mastergberry
Effectively this is what we have: ```py from pyramid.httpexceptions import HTTPNotFound, HTTPBadRequest, HTTPBadGateway, HTTPInternalServerError, HTTPGatewayTimeout from pyramid.view import exception_view_config class ErrorView: @exception_view_config(context=HTTPBadRequest, renderer='badlion:templates/site/error.jinja2') def bad_request(self): self.request.response.status = 200 return dict(...
I only see a single exception in the logs. What do you mean by a second callback for the cases?
Hey @pawelsz-rb I noticed today in my local dev environment the following line when launching the application with pserve `Rollbar already initialized. Ignoring re-init` I am not doing anything explicitly...
Most likely related to https://github.com/electron/electron/issues/22799 I am going to try and sit down this next week or two and debug this problem to see what the difference is between cmake-js...
I attempted this morning to find the difference between a `cmake-js` and `node-gyp` module, but I didn't have any success, even after manually overriding most of the options in the...
Hey @Fry98 are you using `nan` by any chance? https://github.com/nodejs/nan
I actually migrated my project today from nan -> node-addon-api and suddenly saw all of my problems disappear.
Thanks for the information @vadim-termius ...just wish this was more well documented and I didn't waste months on this =( Still doesn't hurt to move over to the new API...
So both the `V8_REVERSE_JSARGS` and `V8_COMPRESS_POINTERS` defines should be done when compiling native modules?
Upon a bit of further inspection of the source code, I found a similar test which shows something that makes more sense on how to use the async progress workers:...