Yael Mintz
Yael Mintz
env: python3.10, tested with GS Consider the following case: ``` Pathy("gs://bucket/blob-not-there") ``` In this case we check whether the [exact blob exists ](https://github.com/justindujardin/pathy/blob/master/pathy/__init__.py#L611-L613), but in case it doesn't exist, we...
In case of idle time, httplib often issues RemoteDisconnected(Remote end closed connection without response), when we attempt to make a connection to the server using SoapStubAdapter:InvokeMethod. Second attempt always succeeds....
Execute `pytest` without the terminal plugin, i.e. `pytest -p no:terminal -s`, when the test contains an assertion failure, for example: ``` def test_assert(): assert 1 == 2, "fail" ``` An...
- Added a new utility function is_missing_exc_info to check if exc_info is missing. - Updated ExceptionDictTransformer to return an empty list when exc_info is missing. - Modified _format_exception to use...
We have been using structlog for a while, along with the ExceptionDictTransformer processor, which integrates wonderfully with DataDog. Recently, we encountered a minor but frustrating issue in our production environment....