Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion drivers/CephFSSR.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def delete(self, sr_uuid) -> None:
raise xs_errors.SROSError(114, "Failed to remove CephFS mount point")

@override
def vdi(self, uuid, loadLocked=False) -> VDI.VDI:
def vdi(self, uuid) -> VDI.VDI:
return CephFSFileVDI(self, uuid)

@staticmethod
Expand Down
2 changes: 1 addition & 1 deletion drivers/GlusterFSSR.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def delete(self, sr_uuid) -> None:
raise xs_errors.SROSError(114, "Failed to remove GlusterFS mount point")

@override
def vdi(self, uuid, loadLocked=False) -> VDI.VDI:
def vdi(self, uuid) -> VDI.VDI:
return GlusterFSFileVDI(self, uuid)

@staticmethod
Expand Down
2 changes: 1 addition & 1 deletion drivers/MooseFSSR.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def delete(self, sr_uuid) -> None:
raise xs_errors.SROSError(114, "Failed to remove MooseFS mount point")

@override
def vdi(self, uuid, loadLocked=False) -> VDI.VDI:
def vdi(self, uuid) -> VDI.VDI:
return MooseFSFileVDI(self, uuid)

@staticmethod
Expand Down
2 changes: 1 addition & 1 deletion drivers/XFSSR.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def create(self, sr_uuid, size) -> None:
scsiutil.devlist_to_serialstring(self.dconf['device'].split(',')))

@override
def vdi(self, uuid, loadLocked = False) -> VDI.VDI:
def vdi(self, uuid) -> VDI.VDI:
return XFSFileVDI(self, uuid)

@staticmethod
Expand Down
2 changes: 1 addition & 1 deletion drivers/ZFSSR.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def detach(self, sr_uuid) -> None:
return super(ZFSSR, self).detach(sr_uuid)

@override
def vdi(self, uuid, loadLocked=False) -> VDI.VDI:
def vdi(self, uuid) -> VDI.VDI:
return ZFSFileVDI(self, uuid)

# Ensure _checkmount is overridden to prevent bad behaviors in FileSR.
Expand Down