Nathanael (Nate) Maytan
Nathanael (Nate) Maytan
``` from psutil import disk_partitions as dpart plist = dpart(all=True) plist = [p for p in plist if p.fstype == 'nfs'] for p in plist: print(f"""'{p.mountpoint}' is type '{p.fstype}'""") """...
Certainly I agree about being conservative with dependencies. Let's see how the options compare. Also, just brainstorming a little: we could be a bit more specific and check NFS version...
Very relatedly, for at least the catalog adapter, we are using WAL. But sqlite docs advise specifically that WAL should not be used over a network file system. See point...
Closed/addressed via PR above.