Matt Burbidge

Results 5 comments of Matt Burbidge

@vishal-kvn My Faust app is also getting a sigterm 15, though I'm running via docker-compose, not k8s. I'm wondering if this ever went anywhere for you?

I haven't been able to figure out why yet, but `repo._filename(self.blob_id)` is returning `None`. ```python === EIN IPython Debugger === ipdb> > /Users/.../python3.5/posixpath.py(64)isabs() 62 """Test whether a path is absolute"""...

Alright, after much pain I figured out how to use the debugger to do it. ```python > /Users/.../python3.5/site-packages/provenance/core.py(505)abspath() -> path = repo._filename(self.blob_id) (Pdb) step --Call-- > /Users/.../python3.5/site-packages/provenance/repos.py(875)_filename() -> def _filename(self,...

Same problem. ```python (Pdb) break /Users/.../python3.5/site-packages/provenance/core.py:505 Breakpoint 1 at /Users/.../python3.5/site-packages/provenance/core.py:505 (Pdb) c > /Users/.../python3.5/site-packages/provenance/core.py(505)abspath() -> path = repo._filename(self.blob_id) (Pdb) s --Call-- > /Users/.../python3.5/site-packages/provenance/repos.py(875)_filename() -> def _filename(self, id): (Pdb) n >...

I'm a bit confused about why `id` is what it is. This all starts when I call `proxy.abspath()`. But `id` seems to be the very thing that I want returned....