Pierre Yager

Results 7 comments of Pierre Yager

It may be circomvented by pinning bigdecimal ? https://github.com/ruby/bigdecimal#which-version-should-you-select

The CTE version can be simplified to: ```sql with NUMBERED_NAMES as ( select UID, CREATED_AT, NAME, NUMBER, row_number() over (partition by UID order by CREATED_AT desc) as rn from NAMES...

I don't understand why, but the original, non translated version of this query crashes the connection and nothing is logged in firebird.log... ```sql with NUMBERED_NAMES as ( select UID, NOM,...

You just have to add the gem `x25519` to your Gemfile as explained here : https://github.com/net-ssh/net-ssh#key-exchange

I found that in closed issues : https://github.com/mceachen/closure_tree/issues/98 Looks like the decision to not implement this feature has already been taken by the past, don't it ?

I already registered the ssh key: ``` $ dokku ssh-keys:list SHA256:nbIxfGoOuEkU/wYg3xWQtUISUHr45BhNuY96ePQWeyc NAME="ledokku" SSHCOMMAND_ALLOWED_KEYS="no-agent-forwarding,no-user-rc,no-X11-forwarding,no-port-forwarding" ```

At Github OAuth app settings, I set up authorization callback url to https://ledokku.mydomain.ext but, as I'm behind an HA Proxy, I defined DOKKU_SSH_HOST to the internal IP of my VM...