Martin Frojd

Results 12 comments of Martin Frojd

I understand that the new aggregation api for MongoDB should be able to to ranged queries much more performant, could be considered.

I understand it's hard to guarantee delivery status, but I'd be happy with getting at least the same information that is routed to the debug log anyway, e.g. there I...

Sure, that outputs: ``` [ '/Users/martin/dev/src/fictive-tools/node_modules/jsdoc/jsdoc.js', '--pedantic', 'false', '-X', 'functions/engine/scenarios.js' ] ``` I think it's because --pedantic is a flag in JSdoc CLI, so if it exists, its true, if...

So far I'm not generating docs but using the explain only to produce a CLI. I can run without setting pedantic and it's working, so I can manage.

Note: the permission issue is solved by granting Cloud Functions Viewer to the service account used by the GitHub Action.

On Sanic 22.12.0 it instead breaks on an invalid server protocol for websocket `websockets.exceptions.InvalidURI: http://127.0.0.1:62871/test_ws isn't a valid URI: scheme isn't ws or wss`, and the other tests break on...

Hi, thanks for the quick response! To clarify, yes, I want to load multiple avatars in parallel and I expect them to be of different sizes and therefore finish at...

I tested downgrading to 7.52.2 but it still appears in certain cases in our app (not in our reproduction repo) - it's hard to isolate what's due to react-hook-form and...

I have a similar issue. I run this command `firebase deploy --only functions:playRequest -P $GCLOUD_PROJECT --non-interactive` deploying just one function, but when two CI jobs ran closely together, one of...

I had this same issue, and currently trying to solve it with this simple helper code: ```python from loguru._logger import context # Inside a class self.logger = logger.bind(**context.get()) # result...