Dainel Vera
Dainel Vera
I was able to pass this error by running zenbot with this env `NODE_OPTIONS=--max-old-space-size=8192` do some test and bump the space size to fit your needs. example: `NODE_ENV=production NODE_OPTIONS=--max-old-space-size=8192 zenbot...
Recently we started to run into this issue. Seems to happen when dead connections are involved, we are using DigitalOceans Managed database ``` INFO [16:52:57.861 #1] [c1a2aeae] POST /atm/new 500...
@vladfaust we manage to control the issue by constructing the database url like this. `postgres://user:password@host:port/database?sslmode=require&initial_pool_size=32&max_pool_size=32&max_idle_pool_size=0&retry_attemps=5` If you notice all the magic happens in `max_idle_pool_size` when set to 0 we stopped...
i got around this by using a custom theme and editing the layouts to include extra information. ``` ```
@vladfaust this pull request started, because i was using EDA with redis password protected. Feel free to close the request :)
You can already achieve this by spinning up virtual machines locally (for example, VirtualBox), then using the regular `mrsk deploy` to bring up your app locally.
Heres one that does not expire https://discord.gg/Tjx4eFARxT
Here is a homebrew formula based on the findings from @kjellberg , it installs Kamal as a bin, currently stable points to v1.3.1 and `main` branch can be installed by...
I submitted a pull-request https://github.com/antirez/redis-doc/pull/1118
we can add a location input to nginx.conf for healthcheck ``` # used for kamal healthcheck location /up { return 200 "OK" } ``` im currently using the turnout gem,...