Konstantin Nesterov

Results 50 comments of Konstantin Nesterov

> also or always? I am not sure I am following the question. Does it happen for every request: no, but sometimes it does. Error on the field resolver level...

We do not use `em.fork` directly but rather do ``` fastify.addHook('onRequest', (_req, _res, done) => { RequestContext.create(orm.em, done) }) ``` Could it be that `em`s are somehow leaking between requests...

This feature would be very useful for the cron jobs where we need to query something since the last task invocation, it's a pity that this doesn't work by default

@yjose it seems that even in v2 popup is only semi-controllable :( My expectations were that if `onClose` and `close` props were provided, developer is in full charge of managing...

Having a similar issue with `142:24 error document.body() is not supported in Firefox 55 compat/compat` `"eslint-plugin-compat": "~4.0.2"`

I took a look at the source code https://github.com/lightdash/lightdash/blob/97e9a8276433b3c8bf484a4f64c34294a201cac0/packages/warehouses/src/warehouseClients/PostgresWarehouseClient.ts#L19-L22 https://github.com/lightdash/lightdash/blob/97e9a8276433b3c8bf484a4f64c34294a201cac0/packages/warehouses/src/warehouseClients/PostgresWarehouseClient.ts#L340-L357 ^ this code explicitly loads only CA certificates that were bundled with Node.js itself + `./ca-bundle-aws-rds-global.pem`. This has the following...

@TuringLovesDeathMetal is there any chance of putting unverified integrations behind some experimental flag? I think that focus on stability is completely reasonable, but at the same time experimental flag would...

Hi @igorlukanin I've tried your suggestion and now I am getting a different error: ``` thread 'tokio-runtime-worker' panicked at /github/home/.cargo/git/checkouts/arrow-datafusion-9d92f730d741a4c6/531b925/datafusion/physical-expr/src/expressions/case.rs:390:18: WHEN expression did not return a BooleanArray SQL API Error:...

@paveltiunov I think that [my schema](https://github.com/cube-js/cube/issues/7801#issue-2149282959) contains only boolean values for the `would_recommend` ```yaml cubes: - name: "survey_results" sql: > select 1 as id, true as would_recommend union all select...