Skip to content

Commit

Permalink
add "disabled" to pool.dataset.create snapdir enum (#14664)
Browse files Browse the repository at this point in the history
  • Loading branch information
creatorcary authored Oct 11, 2024
1 parent f827132 commit edd85ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/middlewared/middlewared/plugins/pool_/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ async def __common_validation(self, verrors, schema, data, mode, parent=None, cu
Int('refreservation'),
Inheritable(Int('special_small_block_size'), has_default=False),
Inheritable(Int('copies')),
Inheritable(Str('snapdir', enum=['VISIBLE', 'HIDDEN'])),
Inheritable(Str('snapdir', enum=['DISABLED', 'VISIBLE', 'HIDDEN'])),
Inheritable(Str('deduplication', enum=['ON', 'VERIFY', 'OFF'])),
Inheritable(Str('checksum', enum=ZFS_CHECKSUM_CHOICES)),
Inheritable(Str('readonly', enum=['ON', 'OFF'])),
Expand Down

0 comments on commit edd85ed

Please sign in to comment.