Andrew Tribone
Andrew Tribone
`Backburner::Worker#retry_connection!` does not call close, leaving open connections to servers until the process holding those connections is killed. Can be reproduced by starting 2 servers. Then, queue jobs in a...
ref #2185
**What is the expected behavior?** `nock.recorder.play()` should contain the recorded version of the request to GetObject. **What is the actual behavior?** Request does not appear in array returned from `nock.recorder.play()`....
Currently when spliting something like this: ```rb expect { ... }.to raise_error StandardError ``` it produces: ```rb expect do ... end.to raise_error SomeError ``` Chaining on `end` is usually considered...
```py import re import uuid import yaml regex = re.compile(r'^UUID\((.+)\)$') yaml.add_implicit_resolver('!uuid', regex) def convert_uuid(loader, node): value = loader.construct_scalar(node) str_value = regex.match(value).group(1) return uuid.UUID(str_value) yaml.add_constructor('!uuid', convert_uuid) print(yaml.load(''' config: abc: UUID(6a02171e-6482-11e9-ab43-f2189845f1cc) def:...
`prefer-is-nil` currently supports suggesting `x === undefined || x === null` -> `isNil(x)`, but there is no equivalent for `x === undefined` -> `isUndefined(x)` and `x === null` -> `isNull(x)`.
``` >>> easypost.Tracker.create('2756302021', carrier='DHLExpress') Traceback (most recent call last): File "", line 1, in File "/Users/tribone/Library/Python/3.7/lib/python/site-packages/easypost/__init__.py", line 590, in create response, api_key = requestor.request('post', url, wrapped_params) File "/Users/tribone/Library/Python/3.7/lib/python/site-packages/easypost/__init__.py", line 260,...
``` val foo = Short( "one", "two", ) ``` will not be reformatted, but ``` val foo = Short( "one", "two" ) ``` will be reformatted to ``` val foo...