alcarithemad/zfsp

dict object has no attribute 'bp'

Closed this issue · 2 comments

I have been attempting to get this to work with a minimal zpool created clean.
when I try to run the 'ls' command with the argument -p (pool file) I get an exception on line 26 in datasets.py
objset_block = self.pool.read_block(self.dsl_dataset.bp)
debug

Probably an unsupported ZFS feature. Those should probably be rejected, or at least produce a warning.

Did you pass -d to zpool create? That disables all the v5000 features, and you can then enable the supported ones as zpool options. See also man zpool-features.

tests/fixtures.sh has some sample pool creation commands.

I see. creating a pool with -d did the trick. Thanks for the response!