Steve Dignam
Steve Dignam
Also needs a timezone setting of some sort
Currently there isn't anyway to ensure that only kodiak merges PRs. I think its something we could add via branch protection and a status check that only kodiak can set,...
I was thinking that the options would just be flags as they are now. cat test.js | prettydiff --mode beautify or keeping with `prettydiff`'s current convention cat test.js | prettydiff...
@CaffeineDuck What I've done in the past is unpack the `.whl` and copy over some manually created stub files (`.pyi`). essentially: ```shell ./.venv/bin/wheel unpack foo-0.1.0.whl touch foo/py.typed cp -R ./foo...
I think moving the .listen call around can help slightly with the error messages, but still not great. If we have the listen call at the module top level the...
I spent more time playing with this, and this is what I have so far: ```tsx const server = setupServer() // Start server before all tests beforeAll(() => server.listen()) //...
As a work around, could use something like haproxy in from of gunicorn to handle the queuing and only have gunicorn workers handle a request at a time clubhouse has...
I had an issue with sshing to postgres, so as a work around I setup a SOCKS proxy: ``` ssh -L 5555:localhost:5432 -N -T remote_ssh_host_name ``` and then connected to...
Couple more mistyped fields on `MessageInstance`: - `from` should be`string | null` - `dateSent` should be `Date | null`
I dug into this a bit more. Increasing timeouts to exorbitant amounts e.g., 500 seconds didn't make a difference. However, when replacing `get_user()` with a barebones version shown below, the...