Skip to content

Commit

Permalink
Add missing await in sed_unlock_all (#15470)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmeagherix authored Jan 23, 2025
1 parent 1b71ee8 commit b01abf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/middlewared/middlewared/plugins/disk_/sed.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async def parse_unlock_info(self, info):

@private
async def sed_unlock_all(self, force=False):
if not self.should_try_unlock(force):
if not await self.should_try_unlock(force):
return

disks_to_unlock = await self.map_disks_to_passwd()
Expand Down

0 comments on commit b01abf8

Please sign in to comment.