Dustin Deus
Dustin Deus
This cannot happen if your args are only primitive values. ```js memoized('foo', 3, 'bar') ``` Your order is guaranteed when you contruct the object manually. ```js c = "bar" a...
We run into a similar issue. Our tz is: ``` show timezone; Europe/Berlin ``` The range column is `created_at timestamptz NOT NULL DEFAULT NOW()` Partman config ```sql SELECT partman.create_parent('webhook_logs.logs', 'created_at',...
We could fix it. The issue is dbeaver that runs and displays everything in your local timezone. I couldn't find a way to set it off. Related: https://github.com/dbeaver/dbeaver/issues/6015
Thanks for the info! > So my recommendation is to always use timestamptz unless you've very carefully proved your use-case for timestamp in your environment. Exactly, in that specific case,...
Sorry for the late response. I have no time to invest.
In my opinion we should keep it very simple. Only compare frameworks which provide at least the featureset: * Router * Middleware mechanism * Hook mechanism (optional) = the features...
I'm 👎 too We should remove the queue mechanism in `close` and provide a single simple callback.
@mcollina in the current state a second `close` handler can't receive an `err` correct? ```js 'use strict' const avvio = require('.')() avvio .ready(function () { console.log('application booted!') avvio.onClose((context, done) =>...
As the next step, we could remove the queue completely and this would be a major change.
Do you working on this or can I create a PR?